Uses of Class
org.apache.commons.math3.optimization.PointVectorValuePair
Packages that use PointVectorValuePair
Package
Description
All classes and sub-packages of this package are deprecated.
This package provides optimization algorithms that don't require derivatives.
This package provides optimization algorithms that require derivatives.
-
Uses of PointVectorValuePair in org.apache.commons.math3.optimization
Methods in org.apache.commons.math3.optimization that return PointVectorValuePairModifier and TypeMethodDescriptionBaseMultivariateVectorMultiStartOptimizer.getOptima()Deprecated.Get all the optima found during the last call tooptimize.BaseMultivariateVectorMultiStartOptimizer.optimize(int maxEval, FUNC f, double[] target, double[] weights, double[] startPoint) Deprecated.Optimize an objective function.BaseMultivariateVectorOptimizer.optimize(int maxEval, FUNC f, double[] target, double[] weight, double[] startPoint) Deprecated.As of 3.1.Methods in org.apache.commons.math3.optimization that return types with arguments of type PointVectorValuePairModifier and TypeMethodDescriptionBaseMultivariateVectorMultiStartOptimizer.getConvergenceChecker()Deprecated.Get the convergence checker.Methods in org.apache.commons.math3.optimization with parameters of type PointVectorValuePairModifier and TypeMethodDescriptionbooleanSimpleVectorValueChecker.converged(int iteration, PointVectorValuePair previous, PointVectorValuePair current) Deprecated.Check if the optimization algorithm has converged considering the last two points. -
Uses of PointVectorValuePair in org.apache.commons.math3.optimization.direct
Methods in org.apache.commons.math3.optimization.direct that return PointVectorValuePairModifier and TypeMethodDescriptionprotected abstract PointVectorValuePairBaseAbstractMultivariateVectorOptimizer.doOptimize()Deprecated.Perform the bulk of the optimization algorithm.BaseAbstractMultivariateVectorOptimizer.optimize(int maxEval, FUNC f, double[] t, double[] w, double[] startPoint) Deprecated.As of 3.1.protected PointVectorValuePairBaseAbstractMultivariateVectorOptimizer.optimize(int maxEval, FUNC f, OptimizationData... optData) Deprecated.Optimize an objective function.protected PointVectorValuePairBaseAbstractMultivariateVectorOptimizer.optimizeInternal(int maxEval, FUNC f, double[] t, double[] w, double[] startPoint) Deprecated.As of 3.1.protected PointVectorValuePairBaseAbstractMultivariateVectorOptimizer.optimizeInternal(int maxEval, FUNC f, OptimizationData... optData) Deprecated.Optimize an objective function.Methods in org.apache.commons.math3.optimization.direct that return types with arguments of type PointVectorValuePairModifier and TypeMethodDescriptionBaseAbstractMultivariateVectorOptimizer.getConvergenceChecker()Deprecated.Get the convergence checker.Constructor parameters in org.apache.commons.math3.optimization.direct with type arguments of type PointVectorValuePairModifierConstructorDescriptionprotectedDeprecated. -
Uses of PointVectorValuePair in org.apache.commons.math3.optimization.general
Methods in org.apache.commons.math3.optimization.general that return PointVectorValuePairModifier and TypeMethodDescriptionGaussNewtonOptimizer.doOptimize()Deprecated.Perform the bulk of the optimization algorithm.protected PointVectorValuePairLevenbergMarquardtOptimizer.doOptimize()Deprecated.Perform the bulk of the optimization algorithm.AbstractLeastSquaresOptimizer.optimize(int maxEval, DifferentiableMultivariateVectorFunction f, double[] target, double[] weights, double[] startPoint) Deprecated.As of 3.1.AbstractLeastSquaresOptimizer.optimize(int maxEval, MultivariateDifferentiableVectorFunction f, double[] target, double[] weights, double[] startPoint) Deprecated.As of 3.1.protected PointVectorValuePairAbstractLeastSquaresOptimizer.optimizeInternal(int maxEval, MultivariateDifferentiableVectorFunction f, OptimizationData... optData) Deprecated.As of 3.1.Constructor parameters in org.apache.commons.math3.optimization.general 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.