Trait Filter

Source
pub trait Filter: DynClone {
    // Required method
    fn calculate(&self, input: f64) -> f64;
}

Required Methods§

Source

fn calculate(&self, input: f64) -> f64

Implementors§

Source§

impl Filter for Derivative

Source§

impl Filter for Integral

Source§

impl<T> Filter for T
where T: Fn(f64) -> f64 + Clone,