Returns the minimum of the given data set.

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

Syntax

C#
protected internal static int GetMinimum(
	int[] x
)
Visual Basic (Declaration)
Protected Friend Shared Function GetMinimum ( _
	x As Integer() _
) As Integer
Visual C++
protected public:
static int GetMinimum(
	array<int>^ x
)

Parameters

x
Type: array< System..::.Int32 >[]()[]
An int array containing the data set whose minimum is to be found.

Return Value

An int which specifies the minimum of the given data set.

See Also