Trait biquad::Biquad[][src]

pub trait Biquad {
    fn run(&mut self, input: f32) -> f32;
fn update_coefficients(&mut self, new_coefficients: Coefficients); }

The required functions of a biquad implementation

Required Methods

A single iteration of a biquad, applying the filtering on the input

Updating of coefficients

Implementors