Package com.imsl.math
Interface OdeAdamsGear.Jacobian
- All Superinterfaces:
OdeAdamsGear.Function
- Enclosing class:
- OdeAdamsGear
Public interface for the user supplied function to
evaluate the Jacobian matrix.
-
Method Summary
Modifier and TypeMethodDescriptiondouble[][]jacobian(double t, double[] y, double[] yprime) Used to compute the Jacobian of the function att.Methods inherited from interface com.imsl.math.OdeAdamsGear.Function
f
-
Method Details
-
jacobian
double[][] jacobian(double t, double[] y, double[] yprime) Used to compute the Jacobian of the function att.- Parameters:
t- adouble, the point at which the function is to be evaluated. (Input)y- adoublearray which contains the dependent variable values. (Input)yprime- adoublearray which contains the value of the function \( \frac{dy}{dt} = y^{'} = f(t,y) \). (Input)- Returns:
- a
doubley.lengthbyy.lengthmatrix containing the value of the Jacobian of the function att. (Output)
-