Namespace:
Extreme.Statistics.Tests
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public TwoSampleTTest(
Vector<double> sample1,
Vector<double> sample2
)
Public Sub New (
sample1 As Vector(Of Double),
sample2 As Vector(Of Double)
)
public:
TwoSampleTTest(
Vector<double>^ sample1,
Vector<double>^ sample2
)
new :
sample1 : Vector<float> *
sample2 : Vector<float> -> TwoSampleTTest
Parameters
- sample1
- Type: Extreme.MathematicsVectorDouble
The first vector - sample2
- Type: Extreme.MathematicsVectorDouble
The second vector
This constructor constructs a t test for the assumption that
the population means of two samples are equal. The test is unpaired, meaning that the
samples are from two independent populations. No assumptions are made
about the variances of the two populations.
Reference