Expand description
Root-finding methods for both univariate, scalar-valued functions and multivariate, vector-valued functions.
§Root-finding functions for univariate, scalar-valued functions
rootfinder provides the following functions for finding the root of a univariate,
scalar-valued function, $f:\mathbb{R}\to\mathbb{R}$:
| Method | Functions |
|---|---|
| bisection | root_bisectionroot_bisection_fast |
| Newton’s | root_newtonroot_newton_fast |
Structs§
- Interval
- Interval.
- Solver
Settings - Solver settings.
Enums§
- Solver
Error - Solver errors.
- Termination
Reason - Solver termination reasons.
Statics§
- DEFAULT_
NEWTON_ SOLVER_ SETTINGS - Default Newton’s method solver settings.
- DEFAULT_
SOLVER_ SETTINGS - Default solver settings.
Functions§
- root_
bisection - Bisection method for finding the root of a univariate, scalar-valued function.
- root_
bisection_ fast - Bisection method for finding the root of a univariate, scalar-valued function (fast version).
- root_
newton - Newton’s method for finding the root of a differentiable, univariate, scalar-valued function.
- root_
newton_ fast - Newton’s method for finding the root of a differentiable, univariate, scalar-valued function (fast version).