Package | Description |
---|---|
org.apache.commons.math3.analysis.integration |
Numerical integration (quadrature) algorithms for univariate real functions.
|
org.apache.commons.math3.analysis.solvers |
Root finding algorithms, for univariate real functions.
|
org.apache.commons.math3.dfp |
Decimal floating point library for Java
|
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 either
minimize or
maximize
a scalar function, called the
objective
function . |
org.apache.commons.math3.optim.univariate |
One-dimensional optimization algorithms.
|
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.
|
Modifier and Type | Field and Description |
---|---|
private Incrementor |
BaseAbstractUnivariateIntegrator.evaluations
The functions evaluation count.
|
protected Incrementor |
BaseAbstractUnivariateIntegrator.iterations
The iteration count.
|
Modifier and Type | Field and Description |
---|---|
private Incrementor |
BaseAbstractUnivariateSolver.evaluations
Evaluations counter.
|
Modifier and Type | Field and Description |
---|---|
private Incrementor |
BracketingNthOrderBrentSolverDFP.evaluations
Evaluations counter.
|
Modifier and Type | Method and Description |
---|---|
Incrementor |
LeastSquaresAdapter.getEvaluationCounter()
Get a independent Incrementor that counts up to the maximum number of evaluations
and then throws an exception.
|
Incrementor |
LeastSquaresAdapter.getIterationCounter()
Get a independent Incrementor that counts up to the maximum number of iterations
and then throws an exception.
|
Modifier and Type | Method and Description |
---|---|
static LeastSquaresProblem |
LeastSquaresFactory.countEvaluations(LeastSquaresProblem problem,
Incrementor counter)
Count the evaluations of a particular problem.
|
Modifier and Type | Field and Description |
---|---|
private Incrementor |
AbstractIntegrator.evaluations
Counter for number of evaluations.
|
Modifier and Type | Method and Description |
---|---|
protected Incrementor |
AbstractIntegrator.getEvaluationsCounter()
Get the evaluations counter.
|
Modifier and Type | Field and Description |
---|---|
protected Incrementor |
BaseOptimizer.evaluations
Evaluations counter.
|
protected Incrementor |
BaseOptimizer.iterations
Iterations counter.
|
Modifier and Type | Method and Description |
---|---|
Incrementor |
OptimizationProblem.getEvaluationCounter()
Get a independent Incrementor that counts up to the maximum number of evaluations
and then throws an exception.
|
Incrementor |
AbstractOptimizationProblem.getEvaluationCounter()
Get a independent Incrementor that counts up to the maximum number of evaluations
and then throws an exception.
|
Incrementor |
OptimizationProblem.getIterationCounter()
Get a independent Incrementor that counts up to the maximum number of iterations
and then throws an exception.
|
Incrementor |
AbstractOptimizationProblem.getIterationCounter()
Get a independent Incrementor that counts up to the maximum number of iterations
and then throws an exception.
|
Modifier and Type | Field and Description |
---|---|
private Incrementor |
BracketFinder.evaluations
Counter for function evaluations.
|
Modifier and Type | Field and Description |
---|---|
protected Incrementor |
BaseAbstractMultivariateVectorOptimizer.evaluations
Deprecated.
Evaluations counter.
|
protected Incrementor |
BaseAbstractMultivariateOptimizer.evaluations
Deprecated.
Evaluations counter.
|
Modifier and Type | Field and Description |
---|---|
private Incrementor |
BaseAbstractUnivariateOptimizer.evaluations
Deprecated.
Evaluations counter.
|
private Incrementor |
BracketFinder.evaluations
Deprecated.
Counter for function evaluations.
|
Modifier and Type | Field and Description |
---|---|
private Incrementor |
IterationManager.iterations
Keeps a count of the number of iterations.
|