Click or drag to resize

TwoSampleUnpairedTTest(Int32, Int32) Constructor

Constructs a TwoSampleUnpairedTTest instance using the given arrays of sample data.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public TwoSampleUnpairedTTest(
	int[] data1,
	int[] data2
)

Parameters

data1  Int32
An array of observed values for the first sample.
data2  Int32
An array of observed values for the second sample.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if either sample has length of zero.
Remarks
The sample means, sample standard deviations, and sample sizes are computed from the given arrays. 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