Function rootfind::solver::bisection [] [src]

pub fn bisection<F>(
    f: &F,
    bounds: &Bounds,
    max_iter: usize
) -> Result<f64, RootError> where
    F: RealFnEval

Root finding via Bisection Method.

It always converges given a valid starting bracket, but the speed of convergence is linear.