Uses of Class
org.apache.commons.math4.analysis.solvers.AllowedSolution
| Package | Description |
|---|---|
| org.apache.commons.math4.analysis.solvers |
Root finding algorithms, for univariate real functions.
|
-
Uses of AllowedSolution in org.apache.commons.math4.analysis.solvers
Methods in org.apache.commons.math4.analysis.solvers that return AllowedSolution Modifier and Type Method Description static AllowedSolutionAllowedSolution. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AllowedSolution[]AllowedSolution. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.math4.analysis.solvers with parameters of type AllowedSolution Modifier and Type Method Description static doubleUnivariateSolverUtils. forceSide(int maxEval, UnivariateFunction f, BracketedUnivariateSolver<UnivariateFunction> bracketing, double baseRoot, double min, double max, AllowedSolution allowedSolution)Force a root found by a non-bracketing solver to lie on a specified side, as if the solver were a bracketing one.doubleBaseSecantSolver. solve(int maxEval, UnivariateFunction f, double min, double max, double startValue, AllowedSolution allowedSolution)Solve for a zero in the given interval, start atstartValue.doubleBaseSecantSolver. solve(int maxEval, UnivariateFunction f, double min, double max, AllowedSolution allowedSolution)Solve for a zero in the given interval.TBracketedRealFieldUnivariateSolver. solve(int maxEval, RealFieldUnivariateFunction<T> f, T min, T max, AllowedSolution allowedSolution)Solve for a zero in the given interval.TBracketedRealFieldUnivariateSolver. solve(int maxEval, RealFieldUnivariateFunction<T> f, T min, T max, T startValue, AllowedSolution allowedSolution)Solve for a zero in the given interval, start atstartValue.doubleBracketedUnivariateSolver. solve(int maxEval, FUNC f, double min, double max, double startValue, AllowedSolution allowedSolution)Solve for a zero in the given interval, start atstartValue.doubleBracketedUnivariateSolver. solve(int maxEval, FUNC f, double min, double max, AllowedSolution allowedSolution)Solve for a zero in the given interval.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.TFieldBracketingNthOrderBrentSolver. solve(int maxEval, RealFieldUnivariateFunction<T> f, T min, T max, AllowedSolution allowedSolution)Solve for a zero in the given interval.TFieldBracketingNthOrderBrentSolver. solve(int maxEval, RealFieldUnivariateFunction<T> f, T min, T max, T startValue, AllowedSolution allowedSolution)Solve for a zero in the given interval, start atstartValue.