public static interface OdeAdamsGear.Jacobian extends OdeAdamsGear.Function
Modifier and Type | Method and Description |
---|---|
double[][] |
jacobian(double t,
double[] y,
double[] yprime)
Used to compute the Jacobian of the function at
t . |
f
double[][] jacobian(double t, double[] y, double[] yprime)
t
.t
- a double
, the point at which the function is to
be evaluated. (Input)y
- a double
array which contains the dependent variable
values. (Input)yprime
- a double
array which contains the value of the
function \( \frac{dy}{dt} = y^{'} = f(t,y) \). (Input)double
y.length
by y.length
matrix containing the value of
the Jacobian of the function at t
. (Output)Copyright © 2020 Rogue Wave Software. All rights reserved.