DOP853CoreDOP853 Constructor |
Namespace: Altaxo.Calc.OdeAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic 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