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.3179.0 (4.8.3179.0)
Syntax
C#
public DenseJacobianMatrixEvaluator(
	Action<double, double[], double[]> f
)

Parameters

f  ActionDouble, Double, Double
The function to calculate the derivatives. First argument is the independent variable (usually designated with x or t), 2nd argument is the array of y values, and the third array accomodates the calculated derivatives dy/dx.
See Also