Crate rootfinder

Source
Expand description

githubcrates-iodocs-rs

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}$:

Structs§

Enums§

Statics§

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).