On return, fvalue contains the function value at the given point.

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

Syntax

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

Parameters

x
Type: array< System..::.Double >[]()[]
A double array which contains the point at which the function is to be evaluated. The contents of this array must not be altered by this function.
fvalue
Type: array< System..::.Double >[]()[]
A double array which, on return, contains the value of the function at x.

See Also