Struct biquad::DirectForm2Transposed[][src]

pub struct DirectForm2Transposed {
    pub s1: f32,
    pub s2: f32,
    // some fields omitted
}

Internal states and coefficients of the Direct Form 2 Transposed form

Fields

Methods

impl DirectForm2Transposed
[src]

Creates a Direct Form 2 Transposed biquad from a set of filter coefficients

Trait Implementations

impl Clone for DirectForm2Transposed
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DirectForm2Transposed
[src]

Formats the value using the given formatter. Read more

impl Biquad for DirectForm2Transposed
[src]

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

Updating of coefficients

Auto Trait Implementations