More correction of Javadoc errors.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@140913 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark R. Diggory 2003-06-16 21:29:49 +00:00
parent 606ef299cc
commit 0811c1790b
1 changed files with 6 additions and 6 deletions

View File

@ -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
* <a href="http://www.utdallas.edu/~ammann/stat5311/node8.html">here</a><p>
*
* Returns an estimate for the pth percentile of the stored values.
* This estimate follows the interpolation-adjusted defintion presented
* <a href="http://www.utdallas.edu/~ammann/stat5311/node8.html">here</a>
* <p/>
* <strong>Preconditions</strong>:<ul>
* <li><code>0 < p < 100</code> (otherwise an <code>IllegalArgumentException
* <li><code>0 &lt; p &lt; 100</code> (otherwise an <code>IllegalArgumentException
* </code> is thrown)</li>
* <li>at least one value must be stored (returns <code>Double.NaN
* </code> otherwise)</li>
* </ul>
*
* @param p the requested percentile (scaled from 0 - 100)
* @return returns an estimate for the pth percentile of the stored data
* @return An estimate for the pth percentile of the stored data
* values
*/
public abstract double getPercentile(double p);