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

Packages that use MaxIterationsExceededException
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.analysis.integration
 

Methods in org.apache.commons.math.analysis.integration that throw MaxIterationsExceededException
 double TrapezoidIntegrator.integrate(double min, double max)
          Deprecated. 
 double RombergIntegrator.integrate(double min, double max)
          Deprecated. 
 double SimpsonIntegrator.integrate(double min, double max)
          Deprecated. 
 double TrapezoidIntegrator.integrate(UnivariateRealFunction f, double min, double max)
          Integrate the function in the given interval.
 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.
 

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)
          Find a complex root for the polynomial with the given coefficients, starting from the given initial value.
 double BrentSolver.solve(double min, double max)
          Deprecated. 
 double BisectionSolver.solve(double min, double max)
          Deprecated. 
 double NewtonSolver.solve(double min, double max)
          Deprecated. 
 double BrentSolver.solve(double min, double max, double initial)
          Deprecated. 
 double BisectionSolver.solve(double min, double max, double initial)
          Deprecated. 
 double NewtonSolver.solve(double min, double max, double startValue)
          Deprecated. 
 double SecantSolver.solve(UnivariateRealFunction f, double min, double max)
          Find a zero in the given interval.
 double BrentSolver.solve(UnivariateRealFunction f, double min, double max)
          Find a zero in the given interval.
 double RiddersSolver.solve(UnivariateRealFunction f, double min, double max)
          Find a root in the given interval.
 double BisectionSolver.solve(UnivariateRealFunction f, double min, double max)
          Solve for a zero root in the given interval.
 double MullerSolver.solve(UnivariateRealFunction f, double min, double max)
          Find a real root in the given interval.
 double NewtonSolver.solve(UnivariateRealFunction f, double min, double max)
          Find a zero near the midpoint of min and max.
 double SecantSolver.solve(UnivariateRealFunction f, double min, double max, double initial)
          Find a zero in the given interval.
 double BrentSolver.solve(UnivariateRealFunction f, double min, double max, double initial)
          Find a zero in the given interval with an initial guess.
 double RiddersSolver.solve(UnivariateRealFunction f, double min, double max, double initial)
          Find a root in the given interval with initial value.
 double BisectionSolver.solve(UnivariateRealFunction f, double min, double max, double initial)
          Solve for a zero in the given interval, start at startValue.
 double MullerSolver.solve(UnivariateRealFunction f, double min, double max, double initial)
          Find a real root in the given interval with initial value.
 double NewtonSolver.solve(UnivariateRealFunction f, double min, double max, double startValue)
          Find a zero near the value startValue.
 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)
          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.
 

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

Methods in org.apache.commons.math.optimization.univariate that throw MaxIterationsExceededException
 double BrentOptimizer.optimize(UnivariateRealFunction f, GoalType goalType, double min, double max)
          Find an optimum in the given interval.
 double BrentOptimizer.optimize(UnivariateRealFunction f, GoalType goalType, double min, double max, double startValue)
          Find an optimum in the given interval, start at startValue.
 



Copyright © 2003-2010 Apache Software Foundation. All Rights Reserved.