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.
|
Modifier and Type | Method and Description |
---|---|
protected double |
BaseAbstractUnivariateIntegrator.computeObjectiveValue(double point)
Compute the objective function value.
|
protected abstract double |
BaseAbstractUnivariateIntegrator.doIntegrate()
Method for implementing actual integration algorithms in derived
classes.
|
protected double |
TrapezoidIntegrator.doIntegrate()
Method for implementing actual integration algorithms in derived
classes.
|
protected double |
RombergIntegrator.doIntegrate()
Method for implementing actual integration algorithms in derived
classes.
|
protected double |
LegendreGaussIntegrator.doIntegrate()
Method for implementing actual integration algorithms in derived
classes.
|
protected double |
SimpsonIntegrator.doIntegrate()
Method for implementing actual integration algorithms in derived
classes.
|
double |
BaseAbstractUnivariateIntegrator.integrate(int maxEval,
UnivariateFunction f,
double lower,
double upper)
Integrate the function in the given interval.
|
double |
UnivariateIntegrator.integrate(int maxEval,
UnivariateFunction f,
double min,
double max)
Integrate the function in the given interval.
|
Modifier and Type | Method and Description |
---|---|
protected double |
BaseAbstractUnivariateSolver.computeObjectiveValue(double point)
Compute the objective function value.
|
protected abstract double |
BaseAbstractUnivariateSolver.doSolve()
Method for implementing actual optimization algorithms in derived
classes.
|
Copyright © 2003-2012 Apache Software Foundation. All Rights Reserved.