Click or drag to resize

TwoSampleUnpairedTTest(Double, Double, Int32, Double, Double, Int32, Double, HypothesisType) Constructor

Constructs a TwoSampleUnpairedTTest instance with the given sample and and hypothesis parameters.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public TwoSampleUnpairedTTest(
	double xbar1,
	double s1,
	int n1,
	double xbar2,
	double s2,
	int n2,
	double alpha,
	HypothesisType type
)

Parameters

xbar1  Double
The mean of the first sample.
s1  Double
The standard deviation of the first sample.
n1  Int32
The size of the first sample.
xbar2  Double
The mean of the second sample.
s2  Double
The standard deviation of the second sample.
n2  Int32
The size of the second sample.
alpha  Double
The accepted probability of falsely rejecting the null hypothesis.
type  HypothesisType
Enum value indicating the form of the alternative hypothesis.
See Also