pub struct HbfInt<'a, T, const M: usize, const N: usize> { /* private fields */ }
Expand description
Half band interpolator (interpolation rate 2)
The effective number of DSP taps is 4*M - 1.
M: number of taps N: state size: N = 2*M - 1 + input.len()
Implementations§
Trait Implementations§
source§impl<'a, T: Copy + Zero + Add + Mul<Output = T> + Sum, const M: usize, const N: usize> Filter for HbfInt<'a, T, M, N>
impl<'a, T: Copy + Zero + Add + Mul<Output = T> + Sum, const M: usize, const N: usize> Filter for HbfInt<'a, T, M, N>
source§fn block_size(&self) -> (usize, usize)
fn block_size(&self) -> (usize, usize)
Return the block size granularity and the maximum block size. Read more
source§fn response_length(&self) -> usize
fn response_length(&self) -> usize
Finite impulse response length in numer of output items minus one
Get this many to drain all previous memory
impl<'a, T: Copy, const M: usize, const N: usize> Copy for HbfInt<'a, T, M, N>
Auto Trait Implementations§
impl<'a, T, const M: usize, const N: usize> Freeze for HbfInt<'a, T, M, N>where
T: Freeze,
impl<'a, T, const M: usize, const N: usize> RefUnwindSafe for HbfInt<'a, T, M, N>where
T: RefUnwindSafe,
impl<'a, T, const M: usize, const N: usize> Send for HbfInt<'a, T, M, N>
impl<'a, T, const M: usize, const N: usize> Sync for HbfInt<'a, T, M, N>where
T: Sync,
impl<'a, T, const M: usize, const N: usize> Unpin for HbfInt<'a, T, M, N>where
T: Unpin,
impl<'a, T, const M: usize, const N: usize> UnwindSafe for HbfInt<'a, T, M, N>where
T: UnwindSafe + RefUnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)