Click or drag to resize

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

Constructs a TwoSampleUnpairedTTest instance with the given sample 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
)

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.
Remarks
The alpha level is set to the current value specified by the static DefaultAlpha property; the form of the hypothesis test is set to the current DefaultType.
See Also