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

Packages that use ConvergenceException
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.fraction Fraction number type and fraction number formatting. 
org.apache.commons.math.ode.events This package provides classes to handle discrete events occurring during Ordinary Differential Equations integration. 
org.apache.commons.math.optimization This package provides common interfaces for the optimization algorithms provided in sub-packages. 
org.apache.commons.math.optimization.linear This package provides optimization algorithms for linear constrained problems. 
 

Uses of ConvergenceException in org.apache.commons.math
 

Subclasses of ConvergenceException in org.apache.commons.math
 class MaxEvaluationsExceededException
          Error thrown when a numerical computation exceeds its allowed number of functions evaluations.
 class MaxIterationsExceededException
          Error thrown when a numerical computation exceeds its allowed number of iterations.
 

Uses of ConvergenceException in org.apache.commons.math.analysis.integration
 

Methods in org.apache.commons.math.analysis.integration that throw ConvergenceException
 double LegendreGaussIntegrator.integrate(double min, double max)
          Deprecated. 
 double UnivariateRealIntegrator.integrate(double min, double max)
          Deprecated. replaced by UnivariateRealIntegrator.integrate(UnivariateRealFunction, double, double) since 2.0
 double LegendreGaussIntegrator.integrate(UnivariateRealFunction f, double min, double max)
          Integrate the function in the given interval.
 double UnivariateRealIntegrator.integrate(UnivariateRealFunction f, double min, double max)
          Integrate the function in the given interval.
 

Uses of ConvergenceException in org.apache.commons.math.analysis.solvers
 

Methods in org.apache.commons.math.analysis.solvers that throw ConvergenceException
static double[] UnivariateRealSolverUtils.bracket(UnivariateRealFunction function, double initial, double lowerBound, double upperBound)
          This method attempts to find two values a and b satisfying lowerBound <= a < initial < b <= upperBound f(a) * f(b) < 0 If f is continuous on [a,b], this means that a and b bracket a root of f.
static double[] UnivariateRealSolverUtils.bracket(UnivariateRealFunction function, double initial, double lowerBound, double upperBound, int maximumIterations)
          This method attempts to find two values a and b satisfying lowerBound <= a < initial < b <= upperBound f(a) * f(b) <= 0 If f is continuous on [a,b], this means that a and b bracket a root of f.
 double SecantSolver.solve(double min, double max)
          Deprecated. 
 double RiddersSolver.solve(double min, double max)
          Deprecated. 
 double LaguerreSolver.solve(double min, double max)
          Deprecated. 
 double MullerSolver.solve(double min, double max)
          Deprecated. 
 double UnivariateRealSolver.solve(double min, double max)
          Deprecated. replaced by UnivariateRealSolver.solve(UnivariateRealFunction, double, double) since 2.0
 double SecantSolver.solve(double min, double max, double initial)
          Deprecated. 
 double RiddersSolver.solve(double min, double max, double initial)
          Deprecated. 
 double LaguerreSolver.solve(double min, double max, double initial)
          Deprecated. 
 double MullerSolver.solve(double min, double max, double initial)
          Deprecated. 
 double UnivariateRealSolver.solve(double min, double max, double startValue)
          Deprecated. replaced by UnivariateRealSolver.solve(UnivariateRealFunction, double, double, double) since 2.0
static double UnivariateRealSolverUtils.solve(UnivariateRealFunction f, double x0, double x1)
          Convenience method to find a zero of a univariate real function.
 double LaguerreSolver.solve(UnivariateRealFunction f, double min, double max)
          Find a real root in the given interval.
 double UnivariateRealSolver.solve(UnivariateRealFunction f, double min, double max)
          Solve for a zero root in the given interval.
static double UnivariateRealSolverUtils.solve(UnivariateRealFunction f, double x0, double x1, double absoluteAccuracy)
          Convenience method to find a zero of a univariate real function.
 double LaguerreSolver.solve(UnivariateRealFunction f, double min, double max, double initial)
          Find a real root in the given interval with initial value.
 double UnivariateRealSolver.solve(UnivariateRealFunction f, double min, double max, double startValue)
          Solve for a zero in the given interval, start at startValue.
 Complex[] LaguerreSolver.solveAll(double[] coefficients, double initial)
          Find all complex roots for the polynomial with the given coefficients, starting from the given initial value.
 

Uses of ConvergenceException in org.apache.commons.math.fraction
 

Subclasses of ConvergenceException in org.apache.commons.math.fraction
 class FractionConversionException
          Error thrown when a double value cannot be converted to a fraction in the allowed number of iterations.
 

Uses of ConvergenceException in org.apache.commons.math.ode.events
 

Methods in org.apache.commons.math.ode.events that throw ConvergenceException
 boolean EventState.evaluateStep(StepInterpolator interpolator)
          Evaluate the impact of the proposed step on the event handler.
 

Uses of ConvergenceException in org.apache.commons.math.optimization
 

Subclasses of ConvergenceException in org.apache.commons.math.optimization
 class OptimizationException
          This class represents exceptions thrown by optimizers.
 

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

Uses of ConvergenceException in org.apache.commons.math.optimization.linear
 

Subclasses of ConvergenceException in org.apache.commons.math.optimization.linear
 class NoFeasibleSolutionException
          This class represents exceptions thrown by optimizers when no solution fulfills the constraints.
 class UnboundedSolutionException
          This class represents exceptions thrown by optimizers when a solution escapes to infinity.
 



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