Returns the minimum of the given data set.

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

Syntax

C#
public static double GetMinimum(
	double[] x
)
Visual Basic (Declaration)
Public Shared Function GetMinimum ( _
	x As Double() _
) As Double
Visual C++
public:
static double GetMinimum(
	array<double>^ x
)

Parameters

x
Type: array< System..::.Double >[]()[]
A double array containing the data set whose minimum is to be found.

Return Value

A double which specifies the minimum of the given data set.

See Also