Trait rust_examples::dispatch::Differentiable[][src]

pub trait Differentiable {
    fn grad(&self, x: f64) -> f64;
}
Expand description

Interface of a real 1D differentiable function

Required methods

Compute the first derivative of this function at given point x

Implementors