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.0.0

Syntax

C#
double[] F(
	double t,
	double[] y
)
Visual Basic (Declaration)
Function F ( _
	t As Double, _
	y As Double() _
) As Double()
Visual C++
array<double>^ F(
	double t, 
	array<double>^ y
)

Parameters

t
Type: System..::.Double
A double, the point at which the function is to be evaluated.
y
Type: array< System..::.Double >[]()[]
A double array which contains the dependent variable values.

Return Value

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

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

.

See Also