Author: erans Date: Thu Aug 1 13:49:52 2013 New Revision: 1509235 URL: http://svn.apache.org/r1509235 Log: Javadoc.
Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/fitting/leastsquares/package-info.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/fitting/leastsquares/package-info.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/fitting/leastsquares/package-info.java?rev=1509235&r1=1509234&r2=1509235&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/fitting/leastsquares/package-info.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/fitting/leastsquares/package-info.java Thu Aug 1 13:49:52 2013 @@ -19,18 +19,20 @@ * This package provides algorithms that minimize the residuals * between observations and model values. * The {@link org.apache.commons.math3.fitting.leastsquares.AbstractLeastSquaresOptimizer - * non-linear least-squares optimizers} minimize the distance (called <em>cost</em> or - * <em>χ<sup>2</sup></em>) between model and observations. + * non-linear least-squares optimizers} minimize the distance (called + * <em>cost</em> or <em>χ<sup>2</sup></em>) between model and + * observations. * * <br/> * Algorithms in this category need access to a <em>model function</em> * (represented by a {@link org.apache.commons.math3.analysis.MultivariateVectorFunction * MultivariateVectorFunction}). - * Such a model predicts a set of values which the algorithm tries to match with a set - * of given set of {@link WithTarget observed values}. + * Such a model predicts a set of values which the algorithm tries to match + * with a set of given set of {@link org.apache.commons.math3.fitting.leastsquares.WithTarget + * observed values}. * <br/> - * The algorithms implemented in this package also require that the user specifies the - * Jacobian matrix of the model (represented by a + * The algorithms implemented in this package also require that the user + * specifies the Jacobian matrix of the model (represented by a * {@link org.apache.commons.math3.analysis.MultivariateMatrixFunction * MultivariateMatrixFunction}). */