| Package | Description | 
|---|---|
| org.apache.commons.math3.analysis.solvers | Root finding algorithms, for univariate real functions. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | BaseSecantSolverBase class for all bracketing Secant-based methods for root-finding
 (approximating a zero of a univariate real function). | 
| class  | BracketingNthOrderBrentSolverThis class implements a modification of the  Brent algorithm. | 
| class  | IllinoisSolverImplements the Illinois method for root-finding (approximating
 a zero of a univariate real function). | 
| class  | PegasusSolverImplements the Pegasus method for root-finding (approximating
 a zero of a univariate real function). | 
| class  | RegulaFalsiSolverImplements the Regula Falsi or False position method for
 root-finding (approximating a zero of a univariate real function). | 
| Modifier and Type | Method and Description | 
|---|---|
| static double | UnivariateSolverUtils. 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. | 
Copyright © 2003–2016 The Apache Software Foundation. All rights reserved.