You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2011/02/22 10:34:52 UTC

svn commit: r1073276 - /commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/stat/StatUtils.java

Author: luc
Date: Tue Feb 22 09:34:52 2011
New Revision: 1073276

URL: http://svn.apache.org/viewvc?rev=1073276&view=rev
Log:
added missing @since

Modified:
    commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/stat/StatUtils.java

Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/stat/StatUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/stat/StatUtils.java?rev=1073276&r1=1073275&r2=1073276&view=diff
==============================================================================
--- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/stat/StatUtils.java (original)
+++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/stat/StatUtils.java Tue Feb 22 09:34:52 2011
@@ -636,6 +636,7 @@ public final class StatUtils {
      *
      * @param sample sample to normalize
      * @return normalized (standardized) sample
+     * @since 2.2
      */
     public static double[] normalize(final double[] sample) {
         DescriptiveStatistics stats = new DescriptiveStatistics();