Click or drag to resize

DOP853CoreDOP853 Constructor

Initializes a new instance of the DOP853CoreDOP853 class.

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public CoreDOP853(
	int order,
	int numberOfStages,
	int numberOfAdditionalStagesForDenseOutput,
	double[][] a,
	double[] b,
	double[]? bl,
	double[] c,
	double x0,
	double[] y,
	Action<double, double[], double[]> f
)

Parameters

order  Int32
The order of the method.
numberOfStages  Int32
The number of stages of the Runge-Kutta method.
numberOfAdditionalStagesForDenseOutput  Int32
The number of additional stages used to prepare dense output.
a  Double
The left side coefficients of the Runge-Kutta scheme.
b  Double
The high order coefficients.
bl  Double
The low order bottom side coefficients (or the differences, depending on the scheme implementation).
c  Double
The step partitions.
x0  Double
The initial x value.
y  Double
The initial y values.
f  ActionDouble, Double, Double
The function evaluating the derivatives.
See Also