Uses of Class
org.hipparchus.analysis.solvers.BracketedUnivariateSolver.Interval
Package
Description
Root finding algorithms, for univariate real functions.
-
Uses of BracketedUnivariateSolver.Interval in org.hipparchus.analysis.solvers
Modifier and TypeMethodDescriptionprotected final BracketedUnivariateSolver.Interval
BaseSecantSolver.doSolveInterval()
Find a root and return the containing interval.protected BracketedUnivariateSolver.Interval
BracketingNthOrderBrentSolver.doSolveInterval()
Find a root and return the containing interval.BaseSecantSolver.solveInterval
(int maxEval, UnivariateFunction f, double min, double max, double startValue) Solve for a zero in the given interval and return a tolerance interval surrounding the root.BracketedUnivariateSolver.solveInterval
(int maxEval, F f, double min, double max) Solve for a zero in the given interval and return a tolerance interval surrounding the root.BracketedUnivariateSolver.solveInterval
(int maxEval, F f, double min, double max, double startValue) Solve for a zero in the given interval and return a tolerance interval surrounding the root.BracketingNthOrderBrentSolver.solveInterval
(int maxEval, UnivariateFunction f, double min, double max, double startValue) Solve for a zero in the given interval and return a tolerance interval surrounding the root.