Gets the expected value of normal order statistics (for tied observations, the average of the expected normal scores).

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

Syntax

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

Parameters

x
Type: array< System..::.Double >[]()[]
A double array which contains the observations.

Return Value

A double array which contains the expected value of normal order statistics for the observations in x.

Remarks

For tied observations GetNormalScores returns an average of the expected normal scores.

See Also