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

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 SimpsonIntegrator.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 RombergIntegrator.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 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 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 MullerSolver.solve(double min, double max)
          Find a real root 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 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 MullerSolver.solve(double min, double max, double initial)
          Find a real root in the given interval with initial value.
private  double BrentSolver.solve(double x0, double y0, double x1, double y1, double x2, double y2)
          Find a zero starting search according to the three provided points.
 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.