Uses of Class
org.apache.commons.math.MaxIterationsExceededException

Packages that use MaxIterationsExceededException
org.apache.commons.math Common classes used throughout the commons-math library. 
org.apache.commons.math.analysis.integration Numerical integration (quadrature) algorithms for univariate real functions. 
org.apache.commons.math.analysis.solvers Root finding algorithms, for univariate real functions. 
org.apache.commons.math.optimization.univariate Univariate real functions minimum finding algorithms. 
 

Uses of MaxIterationsExceededException in org.apache.commons.math
 

Methods in org.apache.commons.math that throw MaxIterationsExceededException
protected  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 MaxIterationsExceededException
 double RombergIntegrator.integrate(double min, double max)
          Deprecated. 
 double SimpsonIntegrator.integrate(double min, double max)
          Deprecated. 
 double TrapezoidIntegrator.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(UnivariateRealFunction f, double min, double max)
          Integrate the function in the given interval.
 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 MaxIterationsExceededException
 Complex LaguerreSolver.solve(Complex[] coefficients, Complex initial)
          Deprecated. in 2.2.
 double NewtonSolver.solve(double min, double max)
          Deprecated. 
 double BrentSolver.solve(double min, double max)
          Deprecated. 
 double BisectionSolver.solve(double min, double max)
          Deprecated. 
 double NewtonSolver.solve(double min, double max, double startValue)
          Deprecated. 
 double BrentSolver.solve(double min, double max, double initial)
          Deprecated. 
 double BisectionSolver.solve(double min, double max, double initial)
          Deprecated. 
 double SecantSolver.solve(int maxEval, UnivariateRealFunction f, double min, double max)
          Find a zero in the given interval.
 double NewtonSolver.solve(int maxEval, UnivariateRealFunction f, double min, double max)
          Find a zero near the midpoint of min and max.
 double BrentSolver.solve(int maxEval, UnivariateRealFunction f, double min, double max)
          Find a zero in the given interval.
 double BisectionSolver.solve(int maxEval, UnivariateRealFunction f, double min, double max)
          Solve for a zero root in the given interval.
 double MullerSolver.solve(int maxEval, UnivariateRealFunction f, double min, double max)
          Find a real root in the given interval.
 double RiddersSolver.solve(int maxEval, UnivariateRealFunction f, double min, double max)
          Find a root 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 NewtonSolver.solve(int maxEval, UnivariateRealFunction f, double min, double max, double startValue)
          Find a zero near the value startValue.
 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 BisectionSolver.solve(int maxEval, UnivariateRealFunction f, double min, double max, double initial)
          Solve for a zero in the given interval, start at startValue.
 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 RiddersSolver.solve(int maxEval, UnivariateRealFunction f, double min, double max, double initial)
          Find a root in the given interval with initial value.
 double SecantSolver.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)
          Deprecated. in 2.2 (to be removed in 3.0).
 double BrentSolver.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)
          Deprecated. in 2.2 (to be removed in 3.0).
 double MullerSolver.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)
          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 NewtonSolver.solve(UnivariateRealFunction f, double min, double max, double startValue)
          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).
 double BisectionSolver.solve(UnivariateRealFunction f, double min, double max, double initial)
          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 RiddersSolver.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 by MullerSolver.solve2(UnivariateRealFunction, double, double) since 2.0
 double MullerSolver.solve2(UnivariateRealFunction f, double min, double max)
          Deprecated. in 2.2 (to be removed in 3.0).
 Complex[] LaguerreSolver.solveAll(Complex[] coefficients, Complex initial)
          Deprecated. in 2.2.
 

Uses of MaxIterationsExceededException in org.apache.commons.math.optimization.univariate
 

Methods in org.apache.commons.math.optimization.univariate that throw MaxIterationsExceededException
protected  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.
 



Copyright © 2003-2011 The Apache Software Foundation. All Rights Reserved.