Uses of Class
org.apache.commons.math3.optim.PointVectorValuePair
Packages that use PointVectorValuePair
Package
Description
This package provides algorithms that minimize the residuals
between observations and model values.
Generally, optimizers are algorithms that will either
minimize
or
maximize
a scalar function, called the
objective
function
.Algorithms for optimizing a vector function.
This package provides optimization algorithms that require derivatives.
-
Uses of PointVectorValuePair in org.apache.commons.math3.fitting.leastsquares
Method parameters in org.apache.commons.math3.fitting.leastsquares with type arguments of type PointVectorValuePairModifier and TypeMethodDescriptionLeastSquaresBuilder.checkerPair
(ConvergenceChecker<PointVectorValuePair> newChecker) Configure the convergence checker.LeastSquaresFactory.evaluationChecker
(ConvergenceChecker<PointVectorValuePair> checker) View a convergence checker specified for aPointVectorValuePair
as one specified for anLeastSquaresProblem.Evaluation
. -
Uses of PointVectorValuePair in org.apache.commons.math3.optim
Methods in org.apache.commons.math3.optim with parameters of type PointVectorValuePairModifier and TypeMethodDescriptionboolean
SimpleVectorValueChecker.converged
(int iteration, PointVectorValuePair previous, PointVectorValuePair current) Check if the optimization algorithm has converged considering the last two points. -
Uses of PointVectorValuePair in org.apache.commons.math3.optim.nonlinear.vector
Methods in org.apache.commons.math3.optim.nonlinear.vector that return PointVectorValuePairModifier and TypeMethodDescriptionMultiStartMultivariateVectorOptimizer.getOptima()
Deprecated.Gets all the optima found during the last call tooptimize
.JacobianMultivariateVectorOptimizer.optimize
(OptimizationData... optData) Deprecated.Stores data and performs the optimization.MultivariateVectorOptimizer.optimize
(OptimizationData... optData) Deprecated.Stores data and performs the optimization.Methods in org.apache.commons.math3.optim.nonlinear.vector with parameters of type PointVectorValuePairModifier and TypeMethodDescriptionprotected void
MultiStartMultivariateVectorOptimizer.store
(PointVectorValuePair optimum) Deprecated.Method that will be called in order to store each found optimum.Constructor parameters in org.apache.commons.math3.optim.nonlinear.vector with type arguments of type PointVectorValuePairModifierConstructorDescriptionprotected
Deprecated.protected
Deprecated. -
Uses of PointVectorValuePair in org.apache.commons.math3.optim.nonlinear.vector.jacobian
Methods in org.apache.commons.math3.optim.nonlinear.vector.jacobian that return PointVectorValuePairModifier and TypeMethodDescriptionGaussNewtonOptimizer.doOptimize()
Deprecated.Performs the bulk of the optimization algorithm.protected PointVectorValuePair
LevenbergMarquardtOptimizer.doOptimize()
Deprecated.Performs the bulk of the optimization algorithm.AbstractLeastSquaresOptimizer.optimize
(OptimizationData... optData) Deprecated.Stores data and performs the optimization.Constructor parameters in org.apache.commons.math3.optim.nonlinear.vector.jacobian with type arguments of type PointVectorValuePairModifierConstructorDescriptionprotected
Deprecated.GaussNewtonOptimizer
(boolean useLU, ConvergenceChecker<PointVectorValuePair> checker) Deprecated.Deprecated.Simple constructor with default settings.LevenbergMarquardtOptimizer
(double initialStepBoundFactor, ConvergenceChecker<PointVectorValuePair> checker, double costRelativeTolerance, double parRelativeTolerance, double orthoTolerance, double threshold) Deprecated.Constructor that allows the specification of a custom convergence checker, in addition to the standard ones.Deprecated.Constructor that allows the specification of a custom convergence checker.