예제 #1
0
 /*  45:    */
 /*  46:    */ public static double homoscedasticTTest(
     StatisticalSummary sampleStats1, StatisticalSummary sampleStats2)
     /*  47:    */ throws NullArgumentException, NumberIsTooSmallException,
         MaxCountExceededException
       /*  48:    */ {
   /*  49:100 */ return T_TEST.homoscedasticTTest(sampleStats1, sampleStats2);
   /*  50:    */ }
예제 #2
0
 /*  33:    */
 /*  34:    */ public static boolean homoscedasticTTest(
     double[] sample1, double[] sample2, double alpha)
     /*  35:    */ throws NullArgumentException, NumberIsTooSmallException, OutOfRangeException,
         MaxCountExceededException
       /*  36:    */ {
   /*  37: 83 */ return T_TEST.homoscedasticTTest(sample1, sample2, alpha);
   /*  38:    */ }
예제 #3
0
 /*  39:    */
 /*  40:    */ public static double homoscedasticTTest(double[] sample1, double[] sample2)
     /*  41:    */ throws NullArgumentException, NumberIsTooSmallException,
         MaxCountExceededException
       /*  42:    */ {
   /*  43: 91 */ return T_TEST.homoscedasticTTest(sample1, sample2);
   /*  44:    */ }