|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use MaxIterationsExceededException | |
|---|---|
| org.apache.commons.math.analysis | Implementations of common numerical analysis procedures, including root finding and function interpolation. |
| Uses of MaxIterationsExceededException in org.apache.commons.math.analysis |
|---|
| Methods in org.apache.commons.math.analysis that throw MaxIterationsExceededException | |
|---|---|
double |
RombergIntegrator.integrate(double min,
double max)
Integrate the function in the given interval. |
double |
TrapezoidIntegrator.integrate(double min,
double max)
Integrate the function in the given interval. |
double |
SimpsonIntegrator.integrate(double min,
double max)
Integrate the function in the given interval. |
Complex |
LaguerreSolver.solve(Complex[] coefficients,
Complex initial)
Find a complex root for the polynomial with the given coefficients, starting from the given initial value. |
double |
RiddersSolver.solve(double min,
double max)
Find a root in the given interval. |
double |
NewtonSolver.solve(double min,
double max)
Find a zero near the midpoint of min and max. |
double |
SecantSolver.solve(double min,
double max)
Find a zero in the given interval. |
double |
BrentSolver.solve(double min,
double max)
Find a zero in the given interval. |
double |
BisectionSolver.solve(double min,
double max)
Find a zero root in the given interval. |
double |
MullerSolver.solve(double min,
double max)
Find a real root in the given interval. |
double |
RiddersSolver.solve(double min,
double max,
double initial)
Find a root in the given interval with initial value. |
double |
NewtonSolver.solve(double min,
double max,
double startValue)
Find a zero near the value startValue. |
double |
SecantSolver.solve(double min,
double max,
double initial)
Find a zero in the given interval. |
double |
BrentSolver.solve(double min,
double max,
double initial)
Find a zero in the given interval with an initial guess. |
double |
BisectionSolver.solve(double min,
double max,
double initial)
Find a zero in the given interval. |
double |
MullerSolver.solve(double min,
double max,
double initial)
Find a real root in the given interval with initial value. |
double |
MullerSolver.solve2(double min,
double max)
Find a real root in the given interval. |
Complex[] |
LaguerreSolver.solveAll(Complex[] coefficients,
Complex initial)
Find all complex roots for the polynomial with the given coefficients, starting from the given initial value. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||