Author: luc
Date: Wed Apr 30 08:20:51 2014
New Revision: 1591211
URL: http://svn.apache.org/r1591211
Log:
Javadoc.
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/distribution/KolmogorovSmirnovDistribution.java
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/inference/KolmogorovSmirnovTest.java
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/distribution/KolmogorovSmirnovDistribution.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/distribution/KolmogorovSmirnovDistribution.java?rev=1591211&r1=1591210&r2=1591211&view=diff
==============================================================================
---
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/distribution/KolmogorovSmirnovDistribution.java
(original)
+++
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/distribution/KolmogorovSmirnovDistribution.java
Wed Apr 30 08:20:51 2014
@@ -70,7 +70,7 @@ import org.apache.commons.math3.util.Fas
* Kolmogorov-Smirnov test (Wikipedia)</a>
* @version $Id$
* @deprecated to be removed in version 4.0 -
- * use {@link org.apache.commmons.math3.stat.inference.KolmogorovSmirnovTest}
+ * use {@link org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest}
*/
public class KolmogorovSmirnovDistribution implements Serializable {
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/inference/KolmogorovSmirnovTest.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/inference/KolmogorovSmirnovTest.java?rev=1591211&r1=1591210&r2=1591211&view=diff
==============================================================================
---
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/inference/KolmogorovSmirnovTest.java
(original)
+++
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/inference/KolmogorovSmirnovTest.java
Wed Apr 30 08:20:51 2014
@@ -351,7 +351,7 @@ public class KolmogorovSmirnovTest {
/**
* Calculates \(P(D_n < d)\) using the method described in [1] with quick
decisions for extreme
* values given in [2] (see above). The result is not exact as with
- * {@link KolmogorovSmirnovDistribution#cdfExact(double)} because
calculations are based on
+ * {@link #cdfExact(double, int)} because calculations are based on
* {@code double} rather than {@link
org.apache.commons.math3.fraction.BigFraction}.
*
* @param d statistic
@@ -370,7 +370,7 @@ public class KolmogorovSmirnovTest {
* Calculates {@code P(D_n < d)}. The result is exact in the sense that
BigFraction/BigReal is
* used everywhere at the expense of very slow execution time. Almost
never choose this in real
* applications unless you are very sure; this is almost solely for
verification purposes.
- * Normally, you would choose {@link
KolmogorovSmirnovDistribution#cdf(double)}. See the class
+ * Normally, you would choose {@link #cdf(double, int)}. See the class
* javadoc for definitions and algorithm description.
*
* @param d statistic