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 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 Modifier and Type Method Description double
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.replaced byUnivariateRealIntegrator.integrate(UnivariateRealFunction, double, double)
since 2.0double
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 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 <= upperBound
f(a) * f(b) < 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 <= a < initial < b <= upperBound
f(a) * f(b) <= 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.fraction Modifier and Type Class Description 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 Modifier and Type Method Description 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 Modifier and Type Class Description class
OptimizationException
Deprecated.in 2.2 (to be removed in 3.0).Methods in org.apache.commons.math.optimization that throw ConvergenceException Modifier and Type Method Description double
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.linear Modifier and Type Class Description 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.
-