Uses of Class
org.apache.commons.math3.util.Incrementor
-
Packages that use Incrementor Package Description org.apache.commons.math3.analysis.integration Numerical integration (quadrature) algorithms for univariate real functions.org.apache.commons.math3.fitting.leastsquares This package provides algorithms that minimize the residuals between observations and model values.org.apache.commons.math3.ode This package provides classes to solve Ordinary Differential Equations problems.org.apache.commons.math3.optim Generally, optimizers are algorithms that will eitherminimizeormaximizea scalar function, called theobjective function.org.apache.commons.math3.optimization.direct This package provides optimization algorithms that don't require derivatives.org.apache.commons.math3.optimization.univariate Univariate real functions minimum finding algorithms.org.apache.commons.math3.util Convenience routines and common data structures used throughout the commons-math library. -
-
Uses of Incrementor in org.apache.commons.math3.analysis.integration
Fields in org.apache.commons.math3.analysis.integration declared as Incrementor Modifier and Type Field Description protected IncrementorBaseAbstractUnivariateIntegrator. iterationsDeprecated.as of 3.6, this field has been replaced withBaseAbstractUnivariateIntegrator.incrementCount() -
Uses of Incrementor in org.apache.commons.math3.fitting.leastsquares
Methods in org.apache.commons.math3.fitting.leastsquares that return Incrementor Modifier and Type Method Description IncrementorLeastSquaresAdapter. getEvaluationCounter()Get a independent Incrementor that counts up to the maximum number of evaluations and then throws an exception.IncrementorLeastSquaresAdapter. getIterationCounter()Get a independent Incrementor that counts up to the maximum number of iterations and then throws an exception.Methods in org.apache.commons.math3.fitting.leastsquares with parameters of type Incrementor Modifier and Type Method Description static LeastSquaresProblemLeastSquaresFactory. countEvaluations(LeastSquaresProblem problem, Incrementor counter)Count the evaluations of a particular problem. -
Uses of Incrementor in org.apache.commons.math3.ode
Methods in org.apache.commons.math3.ode that return Incrementor Modifier and Type Method Description protected IncrementorAbstractIntegrator. getEvaluationsCounter()Deprecated.as of 3.6 replaced withAbstractIntegrator.getCounter() -
Uses of Incrementor in org.apache.commons.math3.optim
Fields in org.apache.commons.math3.optim declared as Incrementor Modifier and Type Field Description protected IncrementorBaseOptimizer. evaluationsEvaluations counter.protected IncrementorBaseOptimizer. iterationsIterations counter.Methods in org.apache.commons.math3.optim that return Incrementor Modifier and Type Method Description IncrementorAbstractOptimizationProblem. getEvaluationCounter()Get a independent Incrementor that counts up to the maximum number of evaluations and then throws an exception.IncrementorOptimizationProblem. getEvaluationCounter()Get a independent Incrementor that counts up to the maximum number of evaluations and then throws an exception.IncrementorAbstractOptimizationProblem. getIterationCounter()Get a independent Incrementor that counts up to the maximum number of iterations and then throws an exception.IncrementorOptimizationProblem. getIterationCounter()Get a independent Incrementor that counts up to the maximum number of iterations and then throws an exception. -
Uses of Incrementor in org.apache.commons.math3.optimization.direct
Fields in org.apache.commons.math3.optimization.direct declared as Incrementor Modifier and Type Field Description protected IncrementorBaseAbstractMultivariateOptimizer. evaluationsDeprecated.Evaluations counter.protected IncrementorBaseAbstractMultivariateVectorOptimizer. evaluationsDeprecated.Evaluations counter. -
Uses of Incrementor in org.apache.commons.math3.optimization.univariate
Fields in org.apache.commons.math3.optimization.univariate declared as Incrementor Modifier and Type Field Description private IncrementorBaseAbstractUnivariateOptimizer. evaluationsDeprecated.Evaluations counter.private IncrementorBracketFinder. evaluationsDeprecated.Counter for function evaluations. -
Uses of Incrementor in org.apache.commons.math3.util
Methods in org.apache.commons.math3.util that return Incrementor Modifier and Type Method Description static IncrementorIncrementor. wrap(IntegerSequence.Incrementor incrementor)Deprecated.Create an instance that delegates everything to aIntegerSequence.Incrementor.
-