GaussJacksonIntegratorInitialize Method  | 
 
            Initialize the integrator's initial independent and dependent variables and reset the integration parameters.
            This should be called by the user prior to performing the first integration step.
            
 
    Namespace: 
   AGI.Foundation.NumericalMethods
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic override void Initialize(
	double x,
	double[] y
)
Public Overrides Sub Initialize ( 
	x As Double,
	y As Double()
)
public:
virtual void Initialize(
	double x, 
	array<double>^ y
) override
abstract Initialize : 
        x : float * 
        y : float[] -> unit 
override Initialize : 
        x : float * 
        y : float[] -> unit Parameters
- x
 - Type: SystemDouble
The value of the initial independent variable. - y
 - Type: SystemDouble
The values for the initial dependent variables. 
Exceptions
See Also