| TwoSamplePairedTTest(Double, Double, Int32) Constructor |
Constructs a TwoSamplePairedTTest instance with the given sample parameters.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public TwoSamplePairedTTest(
double xbar,
double s,
int n
)
Public Sub New (
xbar As Double,
s As Double,
n As Integer
)
public:
TwoSamplePairedTTest(
double xbar,
double s,
int n
)
new :
xbar : float *
s : float *
n : int -> TwoSamplePairedTTest
Parameters
- xbar Double
- The mean of the differences between paired observations.
- s Double
- The standard deviation of the differences between paired observations.
- n Int32
- The sample size.
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