HomeSort by relevance Sort by last modified time
    Searched defs:homoscedasticT (Results 1 - 3 of 3) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
TTest.java 210 double homoscedasticT(double[] sample1, double[] sample2)
215 * variances, use {@link #homoscedasticT(double[], double[])}.
246 * {@link #homoscedasticT(StatisticalSummary, StatisticalSummary)} to
312 double homoscedasticT(
504 * {@link #homoscedasticT(double[], double[])}. The sum of the sample sizes
689 * See {@link #homoscedasticT(double[], double[])} for the formula used to
    [all...]
TTestImpl.java 251 public double homoscedasticT(double[] sample1, double[] sample2)
255 return homoscedasticT(StatUtils.mean(sample1), StatUtils.mean(sample2),
263 * variances, use {@link #homoscedasticT(double[], double[])}.
301 * {@link #homoscedasticT(StatisticalSummary, StatisticalSummary)} to
373 public double homoscedasticT(StatisticalSummary sampleStats1,
378 return homoscedasticT(sampleStats1.getMean(), sampleStats2.getMean(),
594 * {@link #homoscedasticT(double[], double[])}. The sum of the sample sizes
    [all...]
TestUtils.java 156 * @see org.apache.commons.math.stat.inference.TTest#homoscedasticT(double[], double[])
158 public static double homoscedasticT(double[] sample1, double[] sample2)
160 return tTest.homoscedasticT(sample1, sample2);
164 * @see org.apache.commons.math.stat.inference.TTest#homoscedasticT(org.apache.commons.math.stat.descriptive.StatisticalSummary, org.apache.commons.math.stat.descriptive.StatisticalSummary)
166 public static double homoscedasticT(StatisticalSummary sampleStats1,
169 return tTest.homoscedasticT(sampleStats1, sampleStats2);

Completed in 73 milliseconds