pub type DirectForm2Transposed<T, const M: usize = 2> = DirectForm<T, 0, M>;Expand description
Direct form 2 transposed SOS state
Aliased Type§
pub struct DirectForm2Transposed<T, const M: usize = 2> {
pub x: [T; M],
pub y: [[T; M]; 0],
}Fields§
§x: [T; M]Input delay line
[x0, x1]
y: [[T; M]; 0]Intermediate and output delay lines
[[y0, y1]]