Uses of Class
org.apache.commons.math.optimization.VectorialPointValuePair
-
Packages that use VectorialPointValuePair Package Description org.apache.commons.math.optimization This package provides common interfaces for the optimization algorithms provided in sub-packages.org.apache.commons.math.optimization.general 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 VectorialPointValuePair Modifier and Type Method Description VectorialPointValuePair[]
MultiStartDifferentiableMultivariateVectorialOptimizer. getOptima()
Get all the optima found during the last call tooptimize
.VectorialPointValuePair
DifferentiableMultivariateVectorialOptimizer. optimize(DifferentiableMultivariateVectorialFunction f, double[] target, double[] weights, double[] startPoint)
Optimizes an objective function.VectorialPointValuePair
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 VectorialPointValuePair Modifier and Type Method Description boolean
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 VectorialPointValuePair Modifier and Type Method Description protected abstract VectorialPointValuePair
AbstractLeastSquaresOptimizer. doOptimize()
Perform the bulk of optimization algorithm.VectorialPointValuePair
GaussNewtonOptimizer. doOptimize()
Perform the bulk of optimization algorithm.protected VectorialPointValuePair
LevenbergMarquardtOptimizer. doOptimize()
Perform the bulk of optimization algorithm.VectorialPointValuePair
AbstractLeastSquaresOptimizer. optimize(DifferentiableMultivariateVectorialFunction f, double[] target, double[] weights, double[] startPoint)
Optimizes an objective function.
-