Struct idsp::hbf::HbfInt

source ·
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§

source§

impl<'a, T: Copy + Zero + Add + Mul<Output = T> + Sum, const M: usize, const N: usize> HbfInt<'a, T, M, N>

source

pub fn new(taps: &'a [T; M]) -> Self

Non-zero (odd) taps from oldest to one-before-center. Normalized such that center tap is 1.

source

pub fn buf_mut(&mut self) -> &mut [T]

Obtain a mutable reference to the input items buffer space

Trait Implementations§

source§

impl<'a, T: Clone, const M: usize, const N: usize> Clone for HbfInt<'a, T, M, N>

source§

fn clone(&self) -> HbfInt<'a, T, M, N>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a, T: Debug, const M: usize, const N: usize> Debug for HbfInt<'a, T, M, N>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a, T: Copy + Zero + Add + Mul<Output = T> + Sum, const M: usize, const N: usize> Filter for HbfInt<'a, T, M, N>

§

type Item = T

Input/output item type.
source§

fn block_size(&self) -> (usize, usize)

Return the block size granularity and the maximum block size. Read more
source§

fn response_length(&self) -> usize

Finite impulse response length in numer of output items minus one Get this many to drain all previous memory
source§

fn process_block<'b>( &mut self, x: Option<&[Self::Item]>, y: &'b mut [Self::Item] ) -> &'b mut [Self::Item]

Process a block of items. Read more
source§

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> 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>
where T: Send + Sync,

§

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>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.