DirectForm1

Type Alias DirectForm1 

Source
pub type DirectForm1<T, const M: usize = 2> = DirectForm<T, 1, M>;
Expand description

Direct form 1

Aliased Type§

pub struct DirectForm1<T, const M: usize = 2> {
    pub x: [T; M],
    pub y: [[T; M]; 1],
}

Fields§

§x: [T; M]

Input delay line

[x0, x1]

§y: [[T; M]; 1]

Intermediate and output delay lines

[[y0, y1]]