Constructor for NormalityTest.

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

Syntax

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

Parameters

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

Remarks

x.length must be in the range from 3 to 2,000, inclusive, for the Shapiro-Wilk W test and must be greater than 4 for the Lilliefors test.

See Also