MultiStepMethodBaseCalculateJacobian Delegate |
Delegate to evaluate the Jacobian, i.e. the derivative of F with respect to y.
Namespace: Altaxo.Calc.OdeAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public delegate void CalculateJacobian(
double x,
double[] y,
ref IMatrix<double> jac
)
Parameters
- x Double
- The current x value.
- y Double
- The current y values.
- jac IMatrixDouble
- At the end of this call, contains the Jacobian matrix. The implementer must check if a matrix is provided and must check the dimensions of the provided matrix.
In case the provided matrix is null or does not fit the requirements, the implementer must allocate an appropriate matrix.
At the end of the call, the matrix must be filled with the elements of the Jacobian.
See Also