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_bisection root_bisection_fast |
Newton’s | root_newton root_newton_fast |
Structs§
- Interval.
- Solver settings.
Enums§
- Solver errors.
Statics§
- Default Newton’s method solver settings.
- Default solver settings.
Functions§
- Bisection method for finding the root of a univariate, scalar-valued function.
- Bisection method for finding the root of a univariate, scalar-valued function (fast version).
- Newton’s method for finding the root of a differentiable, univariate, scalar-valued function.
- Newton’s method for finding the root of a differentiable, univariate, scalar-valued function (fast version).