Uses of Class
org.apache.commons.math.MaxIterationsExceededException
Packages that use MaxIterationsExceededException
Package
Description
Common classes used throughout the commons-math library.
Numerical integration (quadrature) algorithms for univariate real functions.
Root finding algorithms, for univariate real functions.
Univariate real functions minimum finding algorithms.
-
Uses of MaxIterationsExceededException in org.apache.commons.math
Methods in org.apache.commons.math that throw MaxIterationsExceededExceptionModifier and TypeMethodDescriptionprotected void
ConvergingAlgorithmImpl.incrementIterationsCounter()
Deprecated.Increment the iterations counter by 1. -
Uses of MaxIterationsExceededException in org.apache.commons.math.analysis.integration
Methods in org.apache.commons.math.analysis.integration that throw MaxIterationsExceededExceptionModifier and TypeMethodDescriptiondouble
RombergIntegrator.integrate
(double min, double max) Deprecated.double
RombergIntegrator.integrate
(UnivariateRealFunction f, double min, double max) Integrate the function in the given interval.double
SimpsonIntegrator.integrate
(double min, double max) Deprecated.double
SimpsonIntegrator.integrate
(UnivariateRealFunction f, double min, double max) Integrate the function in the given interval.double
TrapezoidIntegrator.integrate
(double min, double max) Deprecated.double
TrapezoidIntegrator.integrate
(UnivariateRealFunction f, double min, double max) Integrate the function in the given interval. -
Uses of MaxIterationsExceededException in org.apache.commons.math.analysis.solvers
Methods in org.apache.commons.math.analysis.solvers that throw MaxIterationsExceededExceptionModifier and TypeMethodDescriptiondouble
BisectionSolver.solve
(double min, double max) Deprecated.double
BisectionSolver.solve
(double min, double max, double initial) Deprecated.double
BisectionSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max) Solve for a zero root in the given interval.double
BisectionSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max, double initial) Solve for a zero in the given interval, start at startValue.double
BisectionSolver.solve
(UnivariateRealFunction f, double min, double max) Deprecated.in 2.2 (to be removed in 3.0).double
BisectionSolver.solve
(UnivariateRealFunction f, double min, double max, double initial) Deprecated.in 2.2 (to be removed in 3.0).double
BrentSolver.solve
(double min, double max) Deprecated.double
BrentSolver.solve
(double min, double max, double initial) Deprecated.double
BrentSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max) Find a zero in the given interval.double
BrentSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max, double initial) Find a zero in the given interval with an initial guess.double
BrentSolver.solve
(UnivariateRealFunction f, double min, double max) Deprecated.in 2.2 (to be removed in 3.0).double
BrentSolver.solve
(UnivariateRealFunction f, double min, double max, double initial) Deprecated.in 2.2 (to be removed in 3.0).Deprecated.in 2.2.double
MullerSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max) Find a real root in the given interval.double
MullerSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max, double initial) Find a real root in the given interval with initial value.double
MullerSolver.solve
(UnivariateRealFunction f, double min, double max) Deprecated.in 2.2 (to be removed in 3.0).double
MullerSolver.solve
(UnivariateRealFunction f, double min, double max, double initial) Deprecated.in 2.2 (to be removed in 3.0).double
NewtonSolver.solve
(double min, double max) Deprecated.double
NewtonSolver.solve
(double min, double max, double startValue) Deprecated.double
NewtonSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max) Find a zero near the midpoint ofmin
andmax
.double
NewtonSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max, double startValue) Find a zero near the valuestartValue
.double
NewtonSolver.solve
(UnivariateRealFunction f, double min, double max) Deprecated.in 2.2 (to be removed in 3.0).double
NewtonSolver.solve
(UnivariateRealFunction f, double min, double max, double startValue) Deprecated.in 2.2 (to be removed in 3.0).double
RiddersSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max) Find a root in the given interval.double
RiddersSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max, double initial) Find a root in the given interval with initial value.double
RiddersSolver.solve
(UnivariateRealFunction f, double min, double max) Deprecated.in 2.2 (to be removed in 3.0).double
RiddersSolver.solve
(UnivariateRealFunction f, double min, double max, double initial) Deprecated.in 2.2 (to be removed in 3.0).double
SecantSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max) Find a zero in the given interval.double
SecantSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max, double initial) Find a zero in the given interval.double
SecantSolver.solve
(UnivariateRealFunction f, double min, double max) Deprecated.in 2.2 (to be removed in 3.0).double
SecantSolver.solve
(UnivariateRealFunction f, double min, double max, double initial) Deprecated.in 2.2 (to be removed in 3.0).double
MullerSolver.solve2
(double min, double max) Deprecated.replaced byMullerSolver.solve2(UnivariateRealFunction, double, double)
since 2.0double
MullerSolver.solve2
(UnivariateRealFunction f, double min, double max) Deprecated.in 2.2 (to be removed in 3.0).Complex[]
Deprecated.in 2.2. -
Uses of MaxIterationsExceededException in org.apache.commons.math.optimization.univariate
Methods in org.apache.commons.math.optimization.univariate that throw MaxIterationsExceededExceptionModifier and TypeMethodDescriptionprotected double
AbstractUnivariateRealOptimizer.doOptimize()
Method for implementing actual optimization algorithms in derived classes.protected double
BrentOptimizer.doOptimize()
Method for implementing actual optimization algorithms in derived classes.double
AbstractUnivariateRealOptimizer.optimize
(UnivariateRealFunction f, GoalType goal, double min, double max) Find an optimum in the given interval.double
AbstractUnivariateRealOptimizer.optimize
(UnivariateRealFunction f, GoalType goal, double min, double max, double startValue) Find an optimum in the given interval, start at startValue.void
BracketFinder.search
(UnivariateRealFunction func, GoalType goal, double xA, double xB) Search new points that bracket a local optimum of the function.