| TwoSamplePairedTTest(Double, Double, Int32, Double, HypothesisType) Constructor |
Constructs a TwoSamplePairedTTest instance with the given sample and hypothesis
parameters.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public TwoSamplePairedTTest(
double xbar,
double s,
int n,
double alpha,
HypothesisType type
)
Public Sub New (
xbar As Double,
s As Double,
n As Integer,
alpha As Double,
type As HypothesisType
)
public:
TwoSamplePairedTTest(
double xbar,
double s,
int n,
double alpha,
HypothesisType type
)
new :
xbar : float *
s : float *
n : int *
alpha : float *
type : HypothesisType -> 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.
- alpha Double
-
The accepted probability of falsely rejecting the null hypothesis.
- type HypothesisType
-
Enum value indicating the form of the alternative hypothesis.
See Also