Public interface for the function to be minimized.

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

Syntax

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

Parameters

x
Type: array< System..::.Double >[]()[]
A double array, the point at which the function is evaluated. x.length equals the number of variables.

Return Value

A double scalar, the function value at x.

See Also