From 5f06b728457988135fa86f2a484768914f145a92 Mon Sep 17 00:00:00 2001 From: Gilles Date: Tue, 1 Sep 2015 14:35:48 +0200 Subject: [PATCH] Javadoc. --- .../commons/math4/optim/package-info.java | 24 +++---------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/src/main/java/org/apache/commons/math4/optim/package-info.java b/src/main/java/org/apache/commons/math4/optim/package-info.java index f49f3f985..8f3d99c9b 100644 --- a/src/main/java/org/apache/commons/math4/optim/package-info.java +++ b/src/main/java/org/apache/commons/math4/optim/package-info.java @@ -33,27 +33,9 @@ * *

* Some problems are solved more efficiently by algorithms that, instead of an - * objective function, need access to a - * {@link org.apache.commons.math4.optim.nonlinear.vector.ModelFunction - * model function}: such a model predicts a set of values which the - * algorithm tries to match with a set of given - * {@link org.apache.commons.math4.optim.nonlinear.vector.Target target values}. - * Those algorithms are located in the - * {@link org.apache.commons.math4.optim.nonlinear.vector} package. - *
- * Algorithms that also require the - * {@link org.apache.commons.math4.optim.nonlinear.vector.ModelFunctionJacobian - * Jacobian matrix of the model} are located in the - * {@link org.apache.commons.math4.optim.nonlinear.vector.jacobian} package. - *
- * The {@link org.apache.commons.math4.optim.nonlinear.vector.jacobian.AbstractLeastSquaresOptimizer - * non-linear least-squares optimizers} are a specialization of the the latter, - * that minimize the distance (called cost or χ2) - * between model and observations. - *
- * For cases where the Jacobian cannot be provided, a utility class will - * {@link org.apache.commons.math4.optim.nonlinear.scalar.LeastSquaresConverter - * convert} a (vector) model into a (scalar) objective function. + * objective function, need access to all the observations. + * Such methods are implemented in the {@link org.apache.commons.math4.fitting} + * package. *

* *