Uses of Class
org.apache.commons.math4.exception.TooManyEvaluationsException
| Package | Description |
|---|---|
| org.apache.commons.math4.analysis.integration |
Numerical integration (quadrature) algorithms for univariate real functions.
|
| org.apache.commons.math4.analysis.solvers |
Root finding algorithms, for univariate real functions.
|
-
Uses of TooManyEvaluationsException in org.apache.commons.math4.analysis.integration
Methods in org.apache.commons.math4.analysis.integration that throw TooManyEvaluationsException Modifier and Type Method Description protected doubleBaseAbstractUnivariateIntegrator. computeObjectiveValue(double point)Compute the objective function value.protected abstract doubleBaseAbstractUnivariateIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleIterativeLegendreGaussIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleMidPointIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleRombergIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleTrapezoidIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.doubleBaseAbstractUnivariateIntegrator. integrate(int maxEval, UnivariateFunction f, double lower, double upper)Integrate the function in the given interval.doubleUnivariateIntegrator. integrate(int maxEval, UnivariateFunction f, double min, double max)Integrate the function in the given interval. -
Uses of TooManyEvaluationsException in org.apache.commons.math4.analysis.solvers
Methods in org.apache.commons.math4.analysis.solvers that throw TooManyEvaluationsException Modifier and Type Method Description protected doubleBaseAbstractUnivariateSolver. computeObjectiveValue(double point)Compute the objective function value.protected DerivativeStructureAbstractUnivariateDifferentiableSolver. computeObjectiveValueAndDerivative(double point)Compute the objective function value.protected abstract doubleBaseAbstractUnivariateSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleBisectionSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleBracketingNthOrderBrentSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleBrentSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.doubleLaguerreSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleMullerSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleMullerSolver2. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleNewtonRaphsonSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleRiddersSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleSecantSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected voidBaseAbstractUnivariateSolver. incrementEvaluationCount()Increment the evaluation count by one.doubleBaseAbstractUnivariateSolver. solve(int maxEval, FUNC f, double startValue)Solve for a zero in the vicinity ofstartValue.doubleBaseAbstractUnivariateSolver. solve(int maxEval, FUNC f, double min, double max, double startValue)Solve for a zero in the given interval, start atstartValue.doubleBaseUnivariateSolver. solve(int maxEval, FUNC f, double min, double max)Solve for a zero root in the given interval.doubleBaseUnivariateSolver. solve(int maxEval, FUNC f, double min, double max, double startValue)Solve for a zero in the given interval, start atstartValue.doubleBracketingNthOrderBrentSolver. solve(int maxEval, UnivariateFunction f, double min, double max, double startValue, AllowedSolution allowedSolution)Solve for a zero in the given interval, start atstartValue.doubleBracketingNthOrderBrentSolver. solve(int maxEval, UnivariateFunction f, double min, double max, AllowedSolution allowedSolution)Solve for a zero in the given interval.doubleNewtonRaphsonSolver. solve(int maxEval, UnivariateDifferentiableFunction f, double min, double max)Find a zero near the midpoint ofminandmax.Complex[]LaguerreSolver. solveAllComplex(double[] coefficients, double initial)Find all complex roots for the polynomial with the given coefficients, starting from the given initial value.ComplexLaguerreSolver. solveComplex(double[] coefficients, double initial)Find a complex root for the polynomial with the given coefficients, starting from the given initial value.