Delegate that compute the Jacobian matrix df/dy (size NxN), as a function of the scalar t and the vector y.
Namespace: DotNumerics.ODEAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public delegate double[,] OdeJacobian(
double t,
double[] y
)
Public Delegate Function OdeJacobian (
t As Double,
y As Double()
) As Double(,)
Request Example
Parameters
- t Double
- The independent variable.
- y Double
- Array of size N containing the dependent variable values(y(1),y(2),...,y(N)).
Return Value
DoubleThe Jacobian matrix df/dy (size NxN).
See Also