コード例 #1
0
ファイル: TestUtils.java プロジェクト: OliverKramer02/Cy_3
 /*  27:    */
 /*  28:    */ public static double homoscedasticT(
     StatisticalSummary sampleStats1, StatisticalSummary sampleStats2)
     /*  29:    */ throws NullArgumentException, NumberIsTooSmallException
       /*  30:    */ {
   /*  31: 73 */ return T_TEST.homoscedasticT(sampleStats1, sampleStats2);
   /*  32:    */ }
コード例 #2
0
ファイル: TestUtils.java プロジェクト: OliverKramer02/Cy_3
 /*  21:    */
 /*  22:    */ public static double homoscedasticT(double[] sample1, double[] sample2)
     /*  23:    */ throws NullArgumentException, NumberIsTooSmallException
       /*  24:    */ {
   /*  25: 64 */ return T_TEST.homoscedasticT(sample1, sample2);
   /*  26:    */ }