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.

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

Syntax

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

Parameters

n
Type: System..::.Int32
The number of scores to produce.
mean
Type: System..::.Double
Mean of the normal distribution.
variance
Type: System..::.Double
Variance of the normal distribution.

Return Value

A vector containing n Van Der Waerden scores.

See Also