Returns a vector of Van Der Waerden scores. Van der Waerden scores are the quantiles of a standard normal distribution. These scores are also known as quantile normal scores. The scores are computed from the standard normal distribution with mean 0 and variance 1.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public static DoubleVector VanDerWaerdenScores(
	int n
)
Visual Basic (Declaration)
Public Shared Function VanDerWaerdenScores ( _
	n As Integer _
) As DoubleVector
Visual C++
public:
static DoubleVector^ VanDerWaerdenScores(
	int n
)

Parameters

n
Type: System..::.Int32
The number of scores to produce.

Return Value

A vector containing n Van Der Waerden scores.

See Also