Uses of Class
org.apache.commons.math3.optimization.PointVectorValuePair
-
Packages that use PointVectorValuePair Package Description org.apache.commons.math3.optimization All classes and sub-packages of this package are deprecated.org.apache.commons.math3.optimization.direct This package provides optimization algorithms that don't require derivatives.org.apache.commons.math3.optimization.general This package provides optimization algorithms that require derivatives. -
-
Uses of PointVectorValuePair in org.apache.commons.math3.optimization
Fields in org.apache.commons.math3.optimization declared as PointVectorValuePair Modifier and Type Field Description private PointVectorValuePair[]BaseMultivariateVectorMultiStartOptimizer. optimaDeprecated.Found optima.Methods in org.apache.commons.math3.optimization that return PointVectorValuePair Modifier and Type Method Description PointVectorValuePair[]BaseMultivariateVectorMultiStartOptimizer. getOptima()Deprecated.Get all the optima found during the last call tooptimize.PointVectorValuePairBaseMultivariateVectorMultiStartOptimizer. optimize(int maxEval, FUNC f, double[] target, double[] weights, double[] startPoint)Deprecated.Optimize an objective function.PointVectorValuePairBaseMultivariateVectorOptimizer. 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 PointVectorValuePair Modifier and Type Method Description ConvergenceChecker<PointVectorValuePair>BaseMultivariateVectorMultiStartOptimizer. getConvergenceChecker()Deprecated.Get the convergence checker.Methods in org.apache.commons.math3.optimization with parameters of type PointVectorValuePair Modifier and Type Method Description booleanSimpleVectorValueChecker. 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
Fields in org.apache.commons.math3.optimization.direct with type parameters of type PointVectorValuePair Modifier and Type Field Description private ConvergenceChecker<PointVectorValuePair>BaseAbstractMultivariateVectorOptimizer. checkerDeprecated.Convergence checker.Methods in org.apache.commons.math3.optimization.direct that return PointVectorValuePair Modifier and Type Method Description protected abstract PointVectorValuePairBaseAbstractMultivariateVectorOptimizer. doOptimize()Deprecated.Perform the bulk of the optimization algorithm.PointVectorValuePairBaseAbstractMultivariateVectorOptimizer. 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 PointVectorValuePair Modifier and Type Method Description ConvergenceChecker<PointVectorValuePair>BaseAbstractMultivariateVectorOptimizer. getConvergenceChecker()Deprecated.Get the convergence checker.Constructor parameters in org.apache.commons.math3.optimization.direct with type arguments of type PointVectorValuePair Constructor Description BaseAbstractMultivariateVectorOptimizer(ConvergenceChecker<PointVectorValuePair> checker)Deprecated. -
Uses of PointVectorValuePair in org.apache.commons.math3.optimization.general
Methods in org.apache.commons.math3.optimization.general that return PointVectorValuePair Modifier and Type Method Description PointVectorValuePairGaussNewtonOptimizer. doOptimize()Deprecated.Perform the bulk of the optimization algorithm.protected PointVectorValuePairLevenbergMarquardtOptimizer. doOptimize()Deprecated.Perform the bulk of the optimization algorithm.PointVectorValuePairAbstractLeastSquaresOptimizer. optimize(int maxEval, DifferentiableMultivariateVectorFunction f, double[] target, double[] weights, double[] startPoint)Deprecated.As of 3.1.PointVectorValuePairAbstractLeastSquaresOptimizer. 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 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.
-