Trait signal_processing::Upsample

source ·
pub trait Upsample<T, N, Y>: Lists<T>
where N: Maybe<usize>, Y: List<T>,
{ // Required method fn upsample(self, n: N, phase: usize) -> Self::RowsMapped<Y>; }

Required Methods§

source

fn upsample(self, n: N, phase: usize) -> Self::RowsMapped<Y>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, L> Upsample<T, usize, Vec<T>> for L
where L: Lists<T, RowOwned: List<T>>, T: Copy + Zero,

source§

impl<T, L, const N: usize> Upsample<T, (), [T; N]> for L
where L: Lists<T, RowOwned: List<T>, Width = usize>, T: Copy + Zero, [(); { _ }]:,