git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141345 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2004-06-29 05:42:51 +00:00
parent ee290a0a4a
commit f776bd2be9
1 changed files with 3 additions and 3 deletions

View File

@ -19,10 +19,10 @@ import java.io.Serializable;
/**
* Returns the <a href="http://www.xycoon.com/median_2.htm">median</a> 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 {