Trait signal_processing::Resample
source · pub trait Resample<T, M, PQ, Y>: Lists<T>where
T: ComplexFloat,
M: Maybe<<PQ::Maybe<usize> as StaticMaybe<usize>>::Opposite>,
PQ: StaticMaybe<Ratio<usize>>,
Y: List<T>,{
// Required method
fn resample<N, W>(
self,
length: M,
ratio: PQ,
order: N,
cutoff: W
) -> Self::RowsMapped<Y>
where N: Maybe<usize>,
W: Maybe<T::Real>;
}
Required Methods§
fn resample<N, W>( self, length: M, ratio: PQ, order: N, cutoff: W ) -> Self::RowsMapped<Y>
Object Safety§
This trait is not object safe.