GeneralizedEsdTest Constructor

Definition

Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GeneralizedEsdTest() Constructs a new Generalized ESD test for multiple outliers.
GeneralizedEsdTest(Vector<Double>, Int32) Constructs a new Generalized ESD test for multiple outliers.
GeneralizedEsdTest(Vector<Double>, Int32, HypothesisType) Constructs a new Generalized ESD test for multiple outliers.

GeneralizedEsdTest

Constructs a new Generalized ESD test for multiple outliers.
C#
public GeneralizedEsdTest()

GeneralizedEsdTest(Vector<Double>, Int32)

Constructs a new Generalized ESD test for multiple outliers.
C#
public GeneralizedEsdTest(
	Vector<double> sample,
	int numberOfOutliers
)

Parameters

sample  Vector<Double>
A vector.
numberOfOutliers  Int32
The number of outliers to test for.

Exceptions

ArgumentNullException

sample is null.

ArgumentOutOfRangeException

numberOfOutliers is less than 1 or greater than the length of sample.

GeneralizedEsdTest(Vector<Double>, Int32, HypothesisType)

Constructs a new Generalized ESD test for multiple outliers.
C#
public GeneralizedEsdTest(
	Vector<double> sample,
	int numberOfOutliers,
	HypothesisType side
)

Parameters

sample  Vector<Double>
A vector.
numberOfOutliers  Int32
The number of outliers to test for.
side  HypothesisType
Specifies where to test for outliers.

Exceptions

ArgumentNullException

sample is null.

ArgumentOutOfRangeException

numberOfOutliers is less than 1 or greater than the length of sample.

See Also