| Package | Description | 
|---|---|
| org.hipparchus.analysis.solvers | Root finding algorithms, for univariate real functions. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected BracketedUnivariateSolver.Interval | BracketingNthOrderBrentSolver. doSolveInterval()Find a root and return the containing interval. | 
| protected BracketedUnivariateSolver.Interval | BaseSecantSolver. doSolveInterval()Find a root and return the containing interval. | 
| default BracketedUnivariateSolver.Interval | 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.Interval | 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. | 
| BracketedUnivariateSolver.Interval | 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. | 
| BracketedUnivariateSolver.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. | 
Copyright © 2016–2020 Hipparchus.org. All rights reserved.