From f776bd2be914ec3bf81c3de32c7938c9c1f3829b Mon Sep 17 00:00:00 2001 From: Phil Steitz Date: Tue, 29 Jun 2004 05:42:51 +0000 Subject: [PATCH] javadoc git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141345 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/commons/math/stat/univariate/rank/Median.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/org/apache/commons/math/stat/univariate/rank/Median.java b/src/java/org/apache/commons/math/stat/univariate/rank/Median.java index c324a5adb..2934c440f 100644 --- a/src/java/org/apache/commons/math/stat/univariate/rank/Median.java +++ b/src/java/org/apache/commons/math/stat/univariate/rank/Median.java @@ -19,10 +19,10 @@ import java.io.Serializable; /** - * Returns the median of the - * available values. + * Returns the median of the available values. This is the same as the 50th percentile. + * See {@link Percentile} for a description of the algorithm used. * - * @version $Revision: 1.14 $ $Date: 2004/06/23 16:26:17 $ + * @version $Revision: 1.15 $ $Date: 2004/06/29 05:42:51 $ */ public class Median extends Percentile implements Serializable {