Javadoc fixes.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1385301 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-09-16 16:11:53 +00:00
parent 9ad58f46b0
commit 0a900fa692
2 changed files with 3 additions and 3 deletions

View File

@ -114,8 +114,8 @@ public abstract class BaseAbstractMultivariateVectorOptimizer<FUNC extends Multi
* <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.

View File

@ -50,7 +50,7 @@ public class Median extends Percentile implements Serializable {
* 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);