Click or drag to resize
OdeAdamsGearIFunctionF Method
Computes the value of the function  y^{'} = f(t,y) at the given point.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
double[] F(
	double t,
	double[] y
)

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.

Return Value

Type: Double
A double array of length y.Length which contains the value of the function

 \frac{dy}{dt} = y^{'} = f(t,y)

.
See Also