Returns the value of the function at the given point.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

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

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.
yprime
Type: array< System..::.Double >[]()[]
A double array which contains the value of the function at (t,y).

See Also