Click or drag to resize

DenseJacobianMatrixEvaluator Constructor

Initializes a new instance of the DenseJacobianMatrixEvaluator class.

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

Parameters

f  ActionDouble, Double, Double
The function to calculate the derivatives.
Remarks
f is called with the independent variable (usually designated with x or t), an array of state values y, and an output array that receives the derivatives.
See Also