Click or drag to resize

MultiStepMethodBaseInitializationData Constructor

Initializes a new instance of the MultiStepMethodBaseInitializationData class.

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public InitializationData(
	double x0,
	double[] y0,
	Action<double, double[], double[]> f
)

Parameters

x0  Double
The initial x value.
y0  Double
The initial y values.
f  ActionDouble, Double, Double
Function to calculate the derivatives. The first argument is the x value, the second argument are the current y values. The third argument is an array that stores the derivatives.
See Also