OdeRungeKuttaIFunctionF Method |
Returns the value of the function at the given point.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax void F(
double t,
double[] y,
double[] yprime
)
Sub F (
t As Double,
y As Double(),
yprime As Double()
)
void F(
double t,
array<double>^ y,
array<double>^ yprime
)
abstract F :
t : float *
y : float[] *
yprime : float[] -> unit
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 at (t,y).
See Also