Uses of Class
org.apache.commons.math.optimization.VectorialPointValuePair

Packages that use VectorialPointValuePair
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
 VectorialPointValuePair[] MultiStartDifferentiableMultivariateVectorialOptimizer.getOptima()
          Get all the optima found during the last call to optimize.
 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
 boolean SimpleVectorialValueChecker.converged(int iteration, VectorialPointValuePair previous, VectorialPointValuePair current)
          Check if the optimization algorithm has converged considering the last points.
 boolean SimpleVectorialPointChecker.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
 VectorialPointValuePair GaussNewtonOptimizer.doOptimize()
          Perform the bulk of optimization algorithm.
protected  VectorialPointValuePair LevenbergMarquardtOptimizer.doOptimize()
          Perform the bulk of optimization algorithm.
protected abstract  VectorialPointValuePair AbstractLeastSquaresOptimizer.doOptimize()
          Perform the bulk of optimization algorithm.
 VectorialPointValuePair AbstractLeastSquaresOptimizer.optimize(DifferentiableMultivariateVectorialFunction f, double[] target, double[] weights, double[] startPoint)
          Optimizes an objective function.
 



Copyright © 2003-2011 The Apache Software Foundation. All Rights Reserved.