Package com.imsl.math
Interface OdeRungeKutta.Function
- Enclosing class:
- OdeRungeKutta
public static interface OdeRungeKutta.Function
Public interface for user supplied function to
OdeRungeKutta object.-
Method Summary
Modifier and TypeMethodDescriptionvoidf(double t, double[] y, double[] yprime) Returns the value of the function at the given point.
-
Method Details
-
f
void f(double t, double[] y, double[] yprime) Returns the value of the function at the given point.- Parameters:
t- adouble, the point at which the function is to be evaluatedy- adoublearray which contains the dependent variable valuesyprime- adoublearray which contains the value of the function at (t,y)
-