Uses of Class
org.apache.commons.math.ConvergenceException
Packages that use ConvergenceException
Package
Description
Common classes used throughout the commons-math library.
Numerical integration (quadrature) algorithms for univariate real functions.
Root finding algorithms, for univariate real functions.
Fraction number type and fraction number formatting.
This package provides classes to handle discrete events occurring during
Ordinary Differential Equations integration.
This package provides common interfaces for the optimization algorithms
provided in sub-packages.
This package provides optimization algorithms for linear constrained problems.
-
Uses of ConvergenceException in org.apache.commons.math
Subclasses of ConvergenceException in org.apache.commons.mathModifier and TypeClassDescriptionclass
Error thrown when a numerical computation exceeds its allowed number of functions evaluations.class
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 ConvergenceExceptionModifier and TypeMethodDescriptiondouble
LegendreGaussIntegrator.integrate
(double min, double max) Deprecated.double
LegendreGaussIntegrator.integrate
(UnivariateRealFunction f, double min, double max) Integrate the function in the given interval.double
UnivariateRealIntegrator.integrate
(double min, double max) Deprecated.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 ConvergenceExceptionModifier and TypeMethodDescriptionstatic double[]
UnivariateRealSolverUtils.bracket
(UnivariateRealFunction function, double initial, double lowerBound, double upperBound) This method attempts to find two values a and b satisfyinglowerBound invalid input: '<'= a invalid input: '<' initial invalid input: '<' b invalid input: '<'= upperBound
f(a) * f(b) invalid input: '<' 0
If f is continuous on[a,b],
this means thata
andb
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 satisfyinglowerBound invalid input: '<'= a invalid input: '<' initial invalid input: '<' b invalid input: '<'= upperBound
f(a) * f(b) invalid input: '<'= 0
If f is continuous on[a,b],
this means thata
andb
bracket a root of f.double
LaguerreSolver.solve
(double min, double max) Deprecated.double
LaguerreSolver.solve
(double min, double max, double initial) Deprecated.double
LaguerreSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max) Find a real root in the given interval.double
LaguerreSolver.solve
(int maxEval, UnivariateRealFunction f, double min, double max, double initial) Find a real root in the given interval with initial value.double
LaguerreSolver.solve
(UnivariateRealFunction f, double min, double max) Deprecated.in 2.2 (to be removed in 3.0).double
LaguerreSolver.solve
(UnivariateRealFunction f, double min, double max, double initial) Deprecated.in 2.2 (to be removed in 3.0).double
MullerSolver.solve
(double min, double max) Deprecated.double
MullerSolver.solve
(double min, double max, double initial) Deprecated.double
RiddersSolver.solve
(double min, double max) Deprecated.double
RiddersSolver.solve
(double min, double max, double initial) Deprecated.double
SecantSolver.solve
(double min, double max) Deprecated.double
SecantSolver.solve
(double min, double max, double initial) Deprecated.double
UnivariateRealSolver.solve
(double min, double max) Deprecated.replaced byUnivariateRealSolver.solve(UnivariateRealFunction, double, double)
since 2.0double
UnivariateRealSolver.solve
(double min, double max, double startValue) Deprecated.replaced byUnivariateRealSolver.solve(UnivariateRealFunction, double, double, double)
since 2.0double
UnivariateRealSolver.solve
(UnivariateRealFunction f, double min, double max) Deprecated.in 2.2 (to be removed in 3.0).double
UnivariateRealSolver.solve
(UnivariateRealFunction f, double min, double max, double startValue) Deprecated.in 2.2 (to be removed in 3.0).double
UnivariateRealSolverImpl.solve
(int maxEval, UnivariateRealFunction function, double min, double max) Deprecated.Solve for a zero root in the given interval.double
UnivariateRealSolverImpl.solve
(int maxEval, UnivariateRealFunction function, double min, double max, double startValue) Deprecated.Solve for a zero in the given interval, start at startValue.static double
UnivariateRealSolverUtils.solve
(UnivariateRealFunction f, double x0, double x1) Convenience method to find a zero of a univariate real function.static double
UnivariateRealSolverUtils.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.fractionModifier and TypeClassDescriptionclass
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 ConvergenceExceptionModifier and TypeMethodDescriptionboolean
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.optimizationModifier and TypeClassDescriptionclass
Deprecated.in 2.2 (to be removed in 3.0).Methods in org.apache.commons.math.optimization that throw ConvergenceExceptionModifier and TypeMethodDescriptiondouble
MultiStartUnivariateRealOptimizer.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) Find an optimum in the given interval.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.linearModifier and TypeClassDescriptionclass
This class represents exceptions thrown by optimizers when no solution fulfills the constraints.class
This class represents exceptions thrown by optimizers when a solution escapes to infinity.
UnivariateRealIntegrator.integrate(UnivariateRealFunction, double, double)
since 2.0