Uses of Class
org.apache.commons.math.optimization.VectorialPointValuePair
Packages that use VectorialPointValuePair
Package
Description
This package provides common interfaces for the optimization algorithms
provided in sub-packages.
This package provides optimization algorithms that require derivatives.
-
Uses of VectorialPointValuePair in org.apache.commons.math.optimization
Methods in org.apache.commons.math.optimization that return VectorialPointValuePairModifier and TypeMethodDescriptionMultiStartDifferentiableMultivariateVectorialOptimizer.getOptima()
Get all the optima found during the last call tooptimize
.DifferentiableMultivariateVectorialOptimizer.optimize
(DifferentiableMultivariateVectorialFunction f, double[] target, double[] weights, double[] startPoint) Optimizes an objective function.MultiStartDifferentiableMultivariateVectorialOptimizer.optimize
(DifferentiableMultivariateVectorialFunction f, double[] target, double[] weights, double[] startPoint) Optimizes an objective function.Methods in org.apache.commons.math.optimization with parameters of type VectorialPointValuePairModifier and TypeMethodDescriptionboolean
SimpleVectorialPointChecker.converged
(int iteration, VectorialPointValuePair previous, VectorialPointValuePair current) Check if the optimization algorithm has converged considering the last points.boolean
SimpleVectorialValueChecker.converged
(int iteration, VectorialPointValuePair previous, VectorialPointValuePair current) Check if the optimization algorithm has converged considering the last points.boolean
VectorialConvergenceChecker.converged
(int iteration, VectorialPointValuePair previous, VectorialPointValuePair current) Check if the optimization algorithm has converged considering the last points. -
Uses of VectorialPointValuePair in org.apache.commons.math.optimization.general
Methods in org.apache.commons.math.optimization.general that return VectorialPointValuePairModifier and TypeMethodDescriptionprotected abstract VectorialPointValuePair
AbstractLeastSquaresOptimizer.doOptimize()
Perform the bulk of optimization algorithm.GaussNewtonOptimizer.doOptimize()
Perform the bulk of optimization algorithm.protected VectorialPointValuePair
LevenbergMarquardtOptimizer.doOptimize()
Perform the bulk of optimization algorithm.AbstractLeastSquaresOptimizer.optimize
(DifferentiableMultivariateVectorialFunction f, double[] target, double[] weights, double[] startPoint) Optimizes an objective function.