OneSampleTest<T> Constructor

Definition

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

Overload List

OneSampleTest<T>(HypothesisType)

Constructs a new OneSampleTest object.
C#
protected OneSampleTest(
	HypothesisType hypothesisType
)

Parameters

hypothesisType  HypothesisType
A HypothesisType value that specifies whether the test is one or two-tailed.

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

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

Parameters

sample  Vector<T>
The variable the test is to be applied to.
hypothesisType  HypothesisType
A HypothesisType value that specifies whether the test is one or two-tailed.
significanceLevel  Double
The desired significance level.
distribution  ContinuousDistribution
The ContinuousDistribution that is to be used to calculate the significance.

See Also