OdeAdamsGearIJacobianJacobian Method |
Used to compute the Jacobian of the function at t.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax double[,] Jacobian(
double t,
double[] y,
double[] yprime
)
Function Jacobian (
t As Double,
y As Double(),
yprime As Double()
) As Double(,)
array<double,2>^ Jacobian(
double t,
array<double>^ y,
array<double>^ yprime
)
abstract Jacobian :
t : float *
y : float[] *
yprime : float[] -> float[,]
Parameters
- t
- Type: SystemDouble
A double, the point at which the function is to
be evaluated.
- y
- Type: SystemDouble
A double array which contains the dependent variable
values.
- yprime
- Type: SystemDouble
A double array which contains the value of the
function .
Return Value
Type:
Double A
doubley.Length by
y.Length
matrix containing the value of
the Jacobian of the function at
t.
See Also