Click or drag to resize

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: 24.1.418.0 (24.1.418.0)
Syntax
public override void Initialize(
	double x,
	double[] y
)

Parameters

x
Type: SystemDouble
The value of the initial independent variable.
y
Type: SystemDouble
The values for the initial dependent variables.
Exceptions
ExceptionCondition
InvalidOperationExceptionThrown if the SystemOfEquations does not represent a first or second order system (or mixed order of both first and second orders).
See Also