Trait signal_processing::Decimate
source · pub trait Decimate<T, Q, Y>: Lists<T>{
// Required method
fn decimate<N, F>(
self,
ratio: Q,
order: N,
filter_type: F
) -> Self::RowsMapped<Y>
where N: Maybe<usize>,
F: Maybe<IrType>;
}
Required Methods§
fn decimate<N, F>( self, ratio: Q, order: N, filter_type: F ) -> Self::RowsMapped<Y>
Object Safety§
This trait is not object safe.