Uses of Class
org.hipparchus.optim.PointVectorValuePair
Packages that use PointVectorValuePair
Package
Description
  Generally, optimizers are algorithms that will either
  
minimize or
  maximize
  a scalar function, called the
  objective
  function.This package provides algorithms that minimize the residuals
 between observations and model values.
- 
Uses of PointVectorValuePair in org.hipparchus.optim
Methods in org.hipparchus.optim with parameters of type PointVectorValuePairModifier and TypeMethodDescriptionbooleanSimpleVectorValueChecker.converged(int iteration, PointVectorValuePair previous, PointVectorValuePair current) Check if the optimization algorithm has converged considering the last two points. - 
Uses of PointVectorValuePair in org.hipparchus.optim.nonlinear.vector.leastsquares
Method parameters in org.hipparchus.optim.nonlinear.vector.leastsquares with type arguments of type PointVectorValuePairModifier and TypeMethodDescriptionLeastSquaresBuilder.checkerPair(ConvergenceChecker<PointVectorValuePair> newChecker) Configure the convergence checker.LeastSquaresFactory.evaluationChecker(ConvergenceChecker<PointVectorValuePair> checker) View a convergence checker specified for aPointVectorValuePairas one specified for anLeastSquaresProblem.Evaluation.