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 either
minimize or
maximize
a scalar function, called the
objective
function . |
org.apache.commons.math3.optimization.direct |
This package provides optimization algorithms that don't require derivatives.
|
org.apache.commons.math3.util |
Convenience routines and common data structures used throughout the commons-math library.
|
Modifier and Type | Field and Description |
---|---|
protected Incrementor |
BaseAbstractUnivariateIntegrator.iterations
Deprecated.
as of 3.6, this field has been replaced with
BaseAbstractUnivariateIntegrator.incrementCount() |
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 | Method and Description |
---|---|
protected Incrementor |
AbstractIntegrator.getEvaluationsCounter()
Deprecated.
as of 3.6 replaced with
AbstractIntegrator.getCounter() |
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 |
AbstractOptimizationProblem.getEvaluationCounter()
Get a independent Incrementor that counts up to the maximum number of evaluations
and then throws an exception.
|
Incrementor |
OptimizationProblem.getEvaluationCounter()
Get a independent Incrementor that counts up to the maximum number of evaluations
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.
|
Incrementor |
OptimizationProblem.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 |
---|---|
protected Incrementor |
BaseAbstractMultivariateOptimizer.evaluations
Deprecated.
Evaluations counter.
|
protected Incrementor |
BaseAbstractMultivariateVectorOptimizer.evaluations
Deprecated.
Evaluations counter.
|
Modifier and Type | Method and Description |
---|---|
static Incrementor |
Incrementor.wrap(IntegerSequence.Incrementor incrementor)
Deprecated.
Create an instance that delegates everything to a
IntegerSequence.Incrementor . |
Copyright © 2003–2016 The Apache Software Foundation. All rights reserved.