Click or drag to resize

DOP853Initialize Method

Initializes the Runge-Kutta method.

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public override RungeKuttaExplicitBase Initialize(
	double x,
	double[] y,
	Action<double, double[], double[]> f
)

Parameters

x  Double
The initial x value.
y  Double
The initial y values.
f  ActionDouble, Double, Double
Calculation of the derivatives. First argument is x value, 2nd argument are the current y values. The 3rd argument is an array that store the derivatives.

Return Value

RungeKuttaExplicitBase
This instance (for a convenient way to chain this method with sequence creation).
See Also