Uses of Class
org.apache.commons.math3.optim.PointVectorValuePair
-
Packages that use PointVectorValuePair Package Description org.apache.commons.math3.fitting.leastsquares This package provides algorithms that minimize the residuals between observations and model values.org.apache.commons.math3.optim Generally, optimizers are algorithms that will eitherminimizeormaximizea scalar function, called theobjective function.org.apache.commons.math3.optim.nonlinear.vector Algorithms for optimizing a vector function.org.apache.commons.math3.optim.nonlinear.vector.jacobian 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 PointVectorValuePair Modifier and Type Method Description LeastSquaresBuilderLeastSquaresBuilder. checkerPair(ConvergenceChecker<PointVectorValuePair> newChecker)Configure the convergence checker.static ConvergenceChecker<LeastSquaresProblem.Evaluation>LeastSquaresFactory. evaluationChecker(ConvergenceChecker<PointVectorValuePair> checker)View a convergence checker specified for aPointVectorValuePairas 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 PointVectorValuePair Modifier and Type Method Description booleanSimpleVectorValueChecker. 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
Fields in org.apache.commons.math3.optim.nonlinear.vector with type parameters of type PointVectorValuePair Modifier and Type Field Description private java.util.List<PointVectorValuePair>MultiStartMultivariateVectorOptimizer. optimaDeprecated.Found optima.Methods in org.apache.commons.math3.optim.nonlinear.vector that return PointVectorValuePair Modifier and Type Method Description PointVectorValuePair[]MultiStartMultivariateVectorOptimizer. getOptima()Deprecated.Gets all the optima found during the last call tooptimize.PointVectorValuePairJacobianMultivariateVectorOptimizer. optimize(OptimizationData... optData)Deprecated.Stores data and performs the optimization.PointVectorValuePairMultivariateVectorOptimizer. optimize(OptimizationData... optData)Deprecated.Stores data and performs the optimization.Methods in org.apache.commons.math3.optim.nonlinear.vector that return types with arguments of type PointVectorValuePair Modifier and Type Method Description private java.util.Comparator<PointVectorValuePair>MultiStartMultivariateVectorOptimizer. getPairComparator()Deprecated.Methods in org.apache.commons.math3.optim.nonlinear.vector with parameters of type PointVectorValuePair Modifier and Type Method Description protected voidMultiStartMultivariateVectorOptimizer. 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 PointVectorValuePair Constructor Description JacobianMultivariateVectorOptimizer(ConvergenceChecker<PointVectorValuePair> checker)Deprecated.MultivariateVectorOptimizer(ConvergenceChecker<PointVectorValuePair> checker)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 PointVectorValuePair Modifier and Type Method Description PointVectorValuePairGaussNewtonOptimizer. doOptimize()Deprecated.Performs the bulk of the optimization algorithm.protected PointVectorValuePairLevenbergMarquardtOptimizer. doOptimize()Deprecated.Performs the bulk of the optimization algorithm.PointVectorValuePairAbstractLeastSquaresOptimizer. 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 PointVectorValuePair Constructor Description AbstractLeastSquaresOptimizer(ConvergenceChecker<PointVectorValuePair> checker)Deprecated.GaussNewtonOptimizer(boolean useLU, ConvergenceChecker<PointVectorValuePair> checker)Deprecated.GaussNewtonOptimizer(ConvergenceChecker<PointVectorValuePair> checker)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.LevenbergMarquardtOptimizer(ConvergenceChecker<PointVectorValuePair> checker)Deprecated.Constructor that allows the specification of a custom convergence checker.
-