Returns the expected value of a normal order statistic.

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

Syntax

C#
public static double ExpectedNormalOrderStatistic(
	int i,
	int n
)
Visual Basic (Declaration)
Public Shared Function ExpectedNormalOrderStatistic ( _
	i As Integer, _
	n As Integer _
) As Double
Visual C++
public:
static double ExpectedNormalOrderStatistic(
	int i, 
	int n
)

Parameters

i
Type: System..::.Int32
A int which specifies the rank of the order statistic.
n
Type: System..::.Int32
A int which specifies the sample size.

Return Value

A double, the expected value of the i-th order statistic in a sample of size n from the standard normal distribution.

See Also