pub struct Wdf<const N: usize, const M: u32> {
pub a: [Q32<32>; N],
}Expand description
Wave digital filter, order N, configuration M
Allpass
The M const generic enforces compile time knowledge about the two port adapter architecture. Each nibble is one TPA.
Fields§
§a: [Q32<32>; N]Filter coefficient
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<const N: usize, const M: u32> Freeze for Wdf<N, M>
impl<const N: usize, const M: u32> RefUnwindSafe for Wdf<N, M>
impl<const N: usize, const M: u32> Send for Wdf<N, M>
impl<const N: usize, const M: u32> Sync for Wdf<N, M>
impl<const N: usize, const M: u32> Unpin for Wdf<N, M>
impl<const N: usize, const M: u32> UnwindSafe for Wdf<N, M>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more