Trait signal_processing::SpecGram
source · pub trait SpecGram<T, S, N, O, W, WW, const WWW: bool>: List<T>where
T: ComplexFloat + Into<Complex<T::Real>>,
S: Matrix<Complex<T::Real>>,
N: Maybe<usize>,
O: Maybe<usize>,
W: ComplexFloat<Real = T::Real> + Into<Complex<T::Real>>,
WW: MaybeList<W>,{
// Required method
fn specgram<FS>(
&self,
width: N,
sampling_frequency: FS,
window: WW,
overlap: O
) -> (S, S::RowsMapped<T::Real>, S::ColsMapped<T::Real>)
where FS: Maybe<T::Real>;
}
Required Methods§
fn specgram<FS>( &self, width: N, sampling_frequency: FS, window: WW, overlap: O ) -> (S, S::RowsMapped<T::Real>, S::ColsMapped<T::Real>)
Object Safety§
This trait is not object safe.