Click or drag to resize

BandJacobianMatrixEvaluator Constructor

Initializes a new instance of the BandJacobianMatrixEvaluator class.

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

Parameters

f  ActionDouble, Double, Double
The function to calculate the derivatives.
lowerBandwidth  Int32
The lower bandwidth of the band matrix.
upperBandwidth  Int32
The upper bandwidth of the band matrix.
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