Click or drag to resize

SparseJacobianMatrixEvaluatorEvaluateJacobian Method

Evaluates the jacobian matrix.

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void EvaluateJacobian(
	double x,
	double[] y,
	ref Matrix<double> jac
)

Parameters

x  Double
The value of the independent variable (usually named x or t).
y  Double
The array of y values.
jac  MatrixDouble
At return, contains the matrix with jacobian values. If you provide null as this parameter, a new matrix is allocated.
See Also