Author: luc Date: Thu Jul 5 11:34:45 2007 New Revision: 553603 URL: http://svn.apache.org/viewvc?view=rev&rev=553603 Log: trivial javadoc fix
Modified: jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/ChiSquareTest.java jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/TestUtils.java Modified: jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/ChiSquareTest.java URL: http://svn.apache.org/viewvc/jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/ChiSquareTest.java?view=diff&rev=553603&r1=553602&r2=553603 ============================================================================== --- jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/ChiSquareTest.java (original) +++ jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/ChiSquareTest.java Thu Jul 5 11:34:45 2007 @@ -259,7 +259,7 @@ * can reject the null hypothesis that the observed counts conform to the * same distribution. * </p> - * <p>See [EMAIL PROTECTED] #chiSquareDataSetsComparison(long[], long[]) for details + * <p>See [EMAIL PROTECTED] #chiSquareDataSetsComparison(long[], long[])} for details * on the formula used to compute the test statistic. The degrees of * of freedom used to perform the test is one less than the common length * of the input observed count arrays. @@ -294,8 +294,8 @@ * significance level <code>alpha</code>. Returns true iff the null * hypothesis can be rejected with 100 * (1 - alpha) percent confidence. * </p> - * <p>See [EMAIL PROTECTED] #chiSquareDataSetsComparison(double[], double[])} for - * details on the forumla used to compute the Chisquare statistic used + * <p>See [EMAIL PROTECTED] #chiSquareDataSetsComparison(long[], long[])} for + * details on the formula used to compute the Chisquare statistic used * in the test. The degrees of of freedom used to perform the test is * one less than the common length of the input observed count arrays. * </p> Modified: jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/TestUtils.java URL: http://svn.apache.org/viewvc/jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/TestUtils.java?view=diff&rev=553603&r1=553602&r2=553603 ============================================================================== --- jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/TestUtils.java (original) +++ jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/TestUtils.java Thu Jul 5 11:34:45 2007 @@ -277,7 +277,7 @@ } /** - * @see org.apache.commons.math.stat.inference.ChiSquareTest#chiSquareDataSetsComparison(double[], double[]) + * @see org.apache.commons.math.stat.inference.ChiSquareTest#chiSquareDataSetsComparison(long[], long[]) */ public static double chiSquareDataSetsComparison(long[] observed1, long[] observed2) throws IllegalArgumentException { @@ -285,7 +285,7 @@ } /** - * @see org.apache.commons.math.stat.inference.ChiSquareTest#chiSquareTestDataSetsComparison(double[], double[]) + * @see org.apache.commons.math.stat.inference.ChiSquareTest#chiSquareTestDataSetsComparison(long[], long[]) */ public static double chiSquareTestDataSetsComparison(long[] observed1, long[] observed2) throws IllegalArgumentException, MathException { @@ -294,7 +294,7 @@ /** - * @see org.apache.commons.math.stat.inference.ChiSquareTest#chiSquareTestDataSetsComparison(double[], double[], double) + * @see org.apache.commons.math.stat.inference.ChiSquareTest#chiSquareTestDataSetsComparison(long[], long[], double) */ public static boolean chiSquareTestDataSetsComparison(long[] observed1, long[] observed2, double alpha) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]