pub trait FindRoot<F>where F: Callback,{ // Required method fn find(&self, f: F, initial_guess: f64) -> Result<f64, RootFinderError>; }
Finds a root of f starting from an initial guess.
f
Finds a root of f starting from initial_guess.
initial_guess