Click or drag to resize

OdeJacobian Delegate

Delegate that compute the Jacobian matrix df/dy (size NxN), as a function of the scalar t and the vector y.

Namespace: DotNumerics.ODE
Assembly: 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
)
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

Double
The Jacobian matrix df/dy (size NxN).
See Also