Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 87861 invoked from network); 16 Jun 2003 21:29:52 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 16 Jun 2003 21:29:52 -0000 Received: (qmail 20314 invoked by uid 97); 16 Jun 2003 21:32:16 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@nagoya.betaversion.org Received: (qmail 20307 invoked from network); 16 Jun 2003 21:32:16 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 16 Jun 2003 21:32:16 -0000 Received: (qmail 87608 invoked by uid 500); 16 Jun 2003 21:29:50 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 87597 invoked by uid 500); 16 Jun 2003 21:29:50 -0000 Received: (qmail 87594 invoked from network); 16 Jun 2003 21:29:50 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 16 Jun 2003 21:29:50 -0000 Received: (qmail 67459 invoked by uid 1674); 16 Jun 2003 21:29:49 -0000 Date: 16 Jun 2003 21:29:49 -0000 Message-ID: <20030616212949.67458.qmail@icarus.apache.org> From: mdiggory@apache.org To: jakarta-commons-sandbox-cvs@apache.org Subject: cvs commit: jakarta-commons-sandbox/math/src/java/org/apache/commons/math/stat StoreUnivariate.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N mdiggory 2003/06/16 14:29:49 Modified: math/src/java/org/apache/commons/math/stat StoreUnivariate.java Log: More correction of Javadoc errors. Revision Changes Path 1.3 +6 -6 jakarta-commons-sandbox/math/src/java/org/apache/commons/math/stat/StoreUnivariate.java Index: StoreUnivariate.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/stat/StoreUnivariate.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- StoreUnivariate.java 4 Jun 2003 02:22:48 -0000 1.2 +++ StoreUnivariate.java 16 Jun 2003 21:29:49 -0000 1.3 @@ -140,19 +140,19 @@ 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)
  • *
* * @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); --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org