(H1 h1, double hypothMean, double sampleMean, double sampleDev, double sampleSize)
| 22 | private double sampleSize; |
| 23 | |
| 24 | public TTest(H1 h1, double hypothMean, double sampleMean, double sampleDev, double sampleSize) |
| 25 | { |
| 26 | this.h1 = h1; |
| 27 | this.hypothMean = hypothMean; |
| 28 | this.sampleMean = sampleMean; |
| 29 | this.sampleDev = sampleDev; |
| 30 | this.sampleSize = sampleSize; |
| 31 | tDist = new StudentT(sampleSize-1); |
| 32 | } |
| 33 | |
| 34 | public TTest(double hypothMean, double sampleMean, double sampleDev, double sampleSize) |
| 35 | { |
nothing calls this directly
no test coverage detected