Home
last modified time | relevance | path

Searched refs:homoscedasticT (Results 1 – 3 of 3) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
DTTestImpl.java251 public double homoscedasticT(double[] sample1, double[] sample2) in homoscedasticT() method in TTestImpl
255 return homoscedasticT(StatUtils.mean(sample1), StatUtils.mean(sample2), in homoscedasticT()
373 public double homoscedasticT(StatisticalSummary sampleStats1, in homoscedasticT() method in TTestImpl
378 return homoscedasticT(sampleStats1.getMean(), sampleStats2.getMean(), in homoscedasticT()
947 protected double homoscedasticT(double m1, double m2, double v1, in homoscedasticT() method in TTestImpl
1013 double t = FastMath.abs(homoscedasticT(m1, m2, v1, v2, n1, n2)); in homoscedasticTTest()
DTestUtils.java158 public static double homoscedasticT(double[] sample1, double[] sample2) in homoscedasticT() method in TestUtils
160 return tTest.homoscedasticT(sample1, sample2); in homoscedasticT()
166 public static double homoscedasticT(StatisticalSummary sampleStats1, in homoscedasticT() method in TestUtils
169 return tTest.homoscedasticT(sampleStats1, sampleStats2); in homoscedasticT()
DTTest.java210 double homoscedasticT(double[] sample1, double[] sample2) in homoscedasticT() method
312 double homoscedasticT( in homoscedasticT() method