com.imsl.math
Interface OdeAdamsGear.Jacobian
- All Superinterfaces:
- OdeAdamsGear.Function
- Enclosing class:
- OdeAdamsGear
public static interface OdeAdamsGear.Jacobian
- extends OdeAdamsGear.Function
Public interface for the user supplied function to
evaluate the Jacobian matrix.
Method Summary |
double[][] |
jacobian(double t,
double[] y,
double[] yprime)
Used to compute the Jacobian of the function at t . |
jacobian
double[][] jacobian(double t,
double[] y,
double[] yprime)
- Used to compute the Jacobian of the function at
t
.
- Parameters:
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 . (Input)
- Returns:
- a
double
y.length
by y.length
matrix containing the value of
the Jacobian of the function at t
. (Output)
Copyright © 1970-2010 Visual Numerics, Inc.
Built July 30 2010.