Uses of Class
org.apache.commons.math4.legacy.optim.PointVectorValuePair
-
Packages that use PointVectorValuePair Package Description org.apache.commons.math4.legacy.fitting.leastsquares This package provides algorithms that minimize the residuals between observations and model values.org.apache.commons.math4.legacy.optim Generally, optimizers are algorithms that will eitherminimize
ormaximize
a scalar function, called theobjective function
. -
-
Uses of PointVectorValuePair in org.apache.commons.math4.legacy.fitting.leastsquares
Method parameters in org.apache.commons.math4.legacy.fitting.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
. -
Uses of PointVectorValuePair in org.apache.commons.math4.legacy.optim
Methods in org.apache.commons.math4.legacy.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.
-