You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2012/09/16 18:11:53 UTC

svn commit: r1385301 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math3: optimization/direct/BaseAbstractMultivariateVectorOptimizer.java stat/descriptive/rank/Median.java

Author: tn
Date: Sun Sep 16 16:11:53 2012
New Revision: 1385301

URL: http://svn.apache.org/viewvc?rev=1385301&view=rev
Log:
Javadoc fixes.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/direct/BaseAbstractMultivariateVectorOptimizer.java
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/rank/Median.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/direct/BaseAbstractMultivariateVectorOptimizer.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/direct/BaseAbstractMultivariateVectorOptimizer.java?rev=1385301&r1=1385300&r2=1385301&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/direct/BaseAbstractMultivariateVectorOptimizer.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/direct/BaseAbstractMultivariateVectorOptimizer.java Sun Sep 16 16:11:53 2012
@@ -114,8 +114,8 @@ public abstract class BaseAbstractMultiv
      * <code>&sum;weight<sub>i</sub>(objective<sub>i</sub> - target<sub>i</sub>)<sup>2</sup></code>
      *
      * @param f Objective function.
-     * @param target Target value for the objective functions at optimum.
-     * @param weight Weights for the least squares cost computation.
+     * @param t Target value for the objective functions at optimum.
+     * @param w Weights for the least squares cost computation.
      * @param startPoint Start point for optimization.
      * @return the point/value pair giving the optimal value for objective
      * function.

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/rank/Median.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/rank/Median.java?rev=1385301&r1=1385300&r2=1385301&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/rank/Median.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/rank/Median.java Sun Sep 16 16:11:53 2012
@@ -50,7 +50,7 @@ public class Median extends Percentile i
      * to the {@code original}
      *
      * @param original the {@code Median} instance to copy
-     * @throws NullArgumentException if original is null 
+     * @throws NullArgumentException if original is null
      */
     public Median(Median original) throws NullArgumentException {
         super(original);