TwoSampleTest<T> Constructor

Definition

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

Overload List

TwoSampleTest<T>(HypothesisType)

Constructs a new TwoSampleTest<T> object.
C#
protected TwoSampleTest(
	HypothesisType hypothesisType
)

Parameters

hypothesisType  HypothesisType
A HypothesisType value that indicates whether the test is upper or lower one-tailed or two-tailed.

TwoSampleTest<T>(Vector<T>, Vector<T>, HypothesisType, Double, ContinuousDistribution)

Constructs a new TwoSampleTest<T> object.
C#
protected TwoSampleTest(
	Vector<T> sample1,
	Vector<T> sample2,
	HypothesisType hypothesisType,
	double significanceLevel,
	ContinuousDistribution distribution
)

Parameters

sample1  Vector<T>
A vector that contains the first sample.
sample2  Vector<T>
A vector that contains the second sample.
hypothesisType  HypothesisType
A HypothesisType value that specifies whether the test is one or two-tailed.
significanceLevel  Double
The significance level.
distribution  ContinuousDistribution
The ContinuousDistribution of the test statistic.

See Also