Click or drag to resize

GearsBDFWithNordsieckStateCore(Double, Double, ActionDouble, Double, Double, MultiStepMethodBaseCalculateJacobian, OdeMethodOptions) Constructor

Initializes a new instance of the GearsBDFWithNordsieckStateCore class. The initial step size is 1.

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public Core(
	double x0,
	double[] y0,
	Action<double, double[], double[]> f,
	MultiStepMethodBaseCalculateJacobian? evaluateJacobian,
	OdeMethodOptions options
)

Parameters

x0  Double
The starting value of the independent variable x.
y0  Double
The starting value of the dependent variables y.
f  ActionDouble, Double, Double
The function to calculate the derivatives.
evaluateJacobian  MultiStepMethodBaseCalculateJacobian
The function to evaluate the jacobian.
options  OdeMethodOptions
The options for this ODE.
See Also