Delegate that compute the Jacobian matrix df/dy (size NxN), as a function of the scalar t and the vector y.
Namespace: Altaxo.Calc.Ode.ObsoleteAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public delegate void OdeJacobian(
double t,
double[] y,
double[,] jacobian
)
Parameters
- t Double
- The independent variable.
- y Double
- Array of size N containing the dependent variable values(y(1),y(2),...,y(N)).
- jacobian Double
- The Jacobian matrix df/dy (size NxN).
See Also