Skip to main content

secant_method

Function secant_method 

Source
pub fn secant_method(
    f: fn(f64) -> f64,
    x0: f64,
    x1: f64,
    max_iter: usize,
    tol: f64,
) -> f64