Uses of Class
org.hipparchus.optim.PointVectorValuePair
-
Packages that use PointVectorValuePair Package Description org.hipparchus.optim Generally, optimizers are algorithms that will eitherminimize
ormaximize
a scalar function, called theobjective function
.org.hipparchus.optim.nonlinear.vector.leastsquares 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 PointVectorValuePair Modifier and Type Method Description boolean
SimpleVectorValueChecker. 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 PointVectorValuePair Modifier and Type Method Description LeastSquaresBuilder
LeastSquaresBuilder. checkerPair(ConvergenceChecker<PointVectorValuePair> newChecker)
Configure the convergence checker.static ConvergenceChecker<LeastSquaresProblem.Evaluation>
LeastSquaresFactory. evaluationChecker(ConvergenceChecker<PointVectorValuePair> checker)
View a convergence checker specified for aPointVectorValuePair
as one specified for anLeastSquaresProblem.Evaluation
.
-