Author: luc
Date: Sun Jan 20 08:39:28 2008
New Revision: 613603
URL: http://svn.apache.org/viewvc?rev=613603&view=rev
Log:
replaced tab characters
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/UnknownDistributionChiSquareTest.java
commons/proper/math/trunk/src/java/org/apache/commons/math/util/MathUtils.java
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/UnknownDistributionChiSquareTest.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/UnknownDistributionChiSquareTest.java?rev=613603&r1=613602&r2=613603&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/UnknownDistributionChiSquareTest.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/UnknownDistributionChiSquareTest.java
Sun Jan 20 08:39:28 2008
@@ -61,7 +61,7 @@
* @throws IllegalArgumentException if preconditions are not met
*/
double chiSquareDataSetsComparison(long[] observed1, long[] observed2)
- throws IllegalArgumentException;
+ throws IllegalArgumentException;
/**
* <p>Returns the <i>observed significance level</i>, or <a href=
@@ -100,7 +100,7 @@
* @throws MathException if an error occurs computing the p-value
*/
double chiSquareTestDataSetsComparison(long[] observed1, long[] observed2)
- throws IllegalArgumentException, MathException;
+ throws IllegalArgumentException, MathException;
/**
* <p>Performs a Chi-Square two sample test comparing two binned data
@@ -138,6 +138,6 @@
* @throws MathException if an error occurs performing the test
*/
boolean chiSquareTestDataSetsComparison(long[] observed1, long[]
observed2, double alpha)
- throws IllegalArgumentException, MathException;
+ throws IllegalArgumentException, MathException;
}
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/util/MathUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/util/MathUtils.java?rev=613603&r1=613602&r2=613603&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/util/MathUtils.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/util/MathUtils.java
Sun Jan 20 08:39:28 2008
@@ -532,7 +532,7 @@
* @return the value of the logarithm - the number y such that base^y = x.
*/
public static double log(double base, double x) {
- return Math.log(x)/Math.log(base);
+ return Math.log(x)/Math.log(base);
}
/**