Uses of Class
org.apache.commons.math.ConvergenceException
- 
Packages that use ConvergenceException Package Description 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 Modifier and Type Class Description classMaxEvaluationsExceededExceptionError thrown when a numerical computation exceeds its allowed number of functions evaluations.classMaxIterationsExceededExceptionError 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 Modifier and Type Method Description doubleLegendreGaussIntegrator. integrate(double min, double max)Deprecated.doubleLegendreGaussIntegrator. integrate(UnivariateRealFunction f, double min, double max)Integrate the function in the given interval.doubleUnivariateRealIntegrator. integrate(double min, double max)Deprecated.replaced byUnivariateRealIntegrator.integrate(UnivariateRealFunction, double, double)since 2.0doubleUnivariateRealIntegrator. 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 Modifier and Type Method Description static double[]UnivariateRealSolverUtils. bracket(UnivariateRealFunction function, double initial, double lowerBound, double upperBound)This method attempts to find two values a and b satisfyinglowerBound <= a < initial < b <= upperBoundf(a) * f(b) < 0If f is continuous on[a,b],this means thataandbbracket 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 satisfyinglowerBound <= a < initial < b <= upperBoundf(a) * f(b) <= 0If f is continuous on[a,b],this means thataandbbracket a root of f.doubleLaguerreSolver. solve(double min, double max)Deprecated.doubleLaguerreSolver. solve(double min, double max, double initial)Deprecated.doubleLaguerreSolver. solve(int maxEval, UnivariateRealFunction f, double min, double max)Find a real root in the given interval.doubleLaguerreSolver. solve(int maxEval, UnivariateRealFunction f, double min, double max, double initial)Find a real root in the given interval with initial value.doubleLaguerreSolver. solve(UnivariateRealFunction f, double min, double max)Deprecated.in 2.2 (to be removed in 3.0).doubleLaguerreSolver. solve(UnivariateRealFunction f, double min, double max, double initial)Deprecated.in 2.2 (to be removed in 3.0).doubleMullerSolver. solve(double min, double max)Deprecated.doubleMullerSolver. solve(double min, double max, double initial)Deprecated.doubleRiddersSolver. solve(double min, double max)Deprecated.doubleRiddersSolver. solve(double min, double max, double initial)Deprecated.doubleSecantSolver. solve(double min, double max)Deprecated.doubleSecantSolver. solve(double min, double max, double initial)Deprecated.doubleUnivariateRealSolver. solve(double min, double max)Deprecated.replaced byUnivariateRealSolver.solve(UnivariateRealFunction, double, double)since 2.0doubleUnivariateRealSolver. solve(double min, double max, double startValue)Deprecated.replaced byUnivariateRealSolver.solve(UnivariateRealFunction, double, double, double)since 2.0doubleUnivariateRealSolver. solve(UnivariateRealFunction f, double min, double max)Deprecated.in 2.2 (to be removed in 3.0).doubleUnivariateRealSolver. solve(UnivariateRealFunction f, double min, double max, double startValue)Deprecated.in 2.2 (to be removed in 3.0).doubleUnivariateRealSolverImpl. solve(int maxEval, UnivariateRealFunction function, double min, double max)Deprecated.Solve for a zero root in the given interval.doubleUnivariateRealSolverImpl. solve(int maxEval, UnivariateRealFunction function, double min, double max, double startValue)Deprecated.Solve for a zero in the given interval, start at startValue.static doubleUnivariateRealSolverUtils. solve(UnivariateRealFunction f, double x0, double x1)Convenience method to find a zero of a univariate real function.static doubleUnivariateRealSolverUtils. solve(UnivariateRealFunction f, double x0, double x1, double absoluteAccuracy)Convenience method to find a zero of a univariate real function.Complex[]LaguerreSolver. solveAll(double[] coefficients, double initial)Deprecated.in 2.2. - 
Uses of ConvergenceException in org.apache.commons.math.fraction
Subclasses of ConvergenceException in org.apache.commons.math.fraction Modifier and Type Class Description classFractionConversionExceptionError 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 Modifier and Type Method Description booleanEventState. 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 Modifier and Type Class Description classOptimizationExceptionDeprecated.in 2.2 (to be removed in 3.0).Methods in org.apache.commons.math.optimization that throw ConvergenceException Modifier and Type Method Description doubleMultiStartUnivariateRealOptimizer. optimize(UnivariateRealFunction f, GoalType goalType, double min, double max)Find an optimum in the given interval.doubleMultiStartUnivariateRealOptimizer. optimize(UnivariateRealFunction f, GoalType goalType, double min, double max, double startValue)Find an optimum in the given interval, start at startValue.doubleUnivariateRealOptimizer. optimize(UnivariateRealFunction f, GoalType goalType, double min, double max)Find an optimum in the given interval.doubleUnivariateRealOptimizer. 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 Modifier and Type Class Description classNoFeasibleSolutionExceptionThis class represents exceptions thrown by optimizers when no solution fulfills the constraints.classUnboundedSolutionExceptionThis class represents exceptions thrown by optimizers when a solution escapes to infinity. 
 -