diff --git a/src/java/org/apache/commons/math/stat/StoreUnivariate.java b/src/java/org/apache/commons/math/stat/StoreUnivariate.java index a24a0332b..58b8698d2 100644 --- a/src/java/org/apache/commons/math/stat/StoreUnivariate.java +++ b/src/java/org/apache/commons/math/stat/StoreUnivariate.java @@ -140,19 +140,19 @@ public interface StoreUnivariate extends Univariate { public abstract double getElement(int index); /** - * Returns an estimate for the pth percentile of the stored values, - * following the interpolation-adjusted defintion presented - * here
- * + * Returns an estimate for the pth percentile of the stored values. + * This estimate follows the interpolation-adjusted defintion presented + * here + *
* Preconditions:0 < p < 100
(otherwise an IllegalArgumentException
+ * 0 < p < 100
(otherwise an IllegalArgumentException
*
is thrown)
* - at least one value must be stored (returns
Double.NaN
*
otherwise)
*