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 aPointVectorValuePairas one specified for anLeastSquaresProblem.Evaluation. -
Uses of PointVectorValuePair in org.apache.commons.math3.optim
Subclasses with type arguments of type PointVectorValuePair in org.apache.commons.math3.optimModifier and TypeClassDescriptionclassSimple implementation of theConvergenceCheckerinterface using only objective function values.Methods in org.apache.commons.math3.optim with parameters of type PointVectorValuePairModifier and TypeMethodDescriptionbooleanSimpleVectorValueChecker.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
Subclasses with type arguments of type PointVectorValuePair in org.apache.commons.math3.optim.nonlinear.vectorModifier and TypeClassDescriptionclassDeprecated.classDeprecated.Fields in org.apache.commons.math3.optim.nonlinear.vector with type parameters of type PointVectorValuePairModifier and TypeFieldDescriptionprivate final List<PointVectorValuePair> MultiStartMultivariateVectorOptimizer.optimaDeprecated.Found optima.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 that return types with arguments of type PointVectorValuePairModifier and TypeMethodDescriptionprivate Comparator<PointVectorValuePair> MultiStartMultivariateVectorOptimizer.getPairComparator()Deprecated.Methods in org.apache.commons.math3.optim.nonlinear.vector with parameters of type PointVectorValuePairModifier and TypeMethodDescriptionprotected 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 PointVectorValuePairModifierConstructorDescriptionprotectedDeprecated.protectedDeprecated. -
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 PointVectorValuePairLevenbergMarquardtOptimizer.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 PointVectorValuePairModifierConstructorDescriptionprotectedDeprecated.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.