Repository: commons-math Updated Branches: refs/heads/master 67a7fdc19 -> 1f7b1c12f
Javadoc. Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/5f06b728 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/5f06b728 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/5f06b728 Branch: refs/heads/master Commit: 5f06b728457988135fa86f2a484768914f145a92 Parents: 67a7fdc Author: Gilles <er...@apache.org> Authored: Tue Sep 1 14:35:48 2015 +0200 Committer: Gilles <er...@apache.org> Committed: Tue Sep 1 14:35:48 2015 +0200 ---------------------------------------------------------------------- .../commons/math4/optim/package-info.java | 24 +++----------------- 1 file changed, 3 insertions(+), 21 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/5f06b728/src/main/java/org/apache/commons/math4/optim/package-info.java ---------------------------------------------------------------------- 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 f49f3f9..8f3d99c 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 @@ * * <p> * 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 - * <em>model function</em>}: 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. - * <br/> - * 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. - * <br/> - * 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 <em>cost</em> or <em>χ<sup>2</sup></em>) - * between model and observations. - * <br/> - * 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. * </p> * * <p>