RungeKuttaFehlberg78IntegratorInitialize 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.2.419.0 (24.2.419.0)
Syntax public 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.
See Also