Trait signal_processing::Dwht

source ·
pub trait Dwht<T, O, OO, const OOO: bool>: Lists<T>
where T: ComplexFloat, O: OwnedList<T>, OO: Maybe<O>,
{ // Required method fn dwht(self, ordering: WhtOrdering) -> Self::RowsMapped<OO>; }

Required Methods§

source

fn dwht(self, ordering: WhtOrdering) -> Self::RowsMapped<OO>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, L> Dwht<T, <L as MaybeLists<T>>::RowOwned, <L as MaybeLists<T>>::RowOwned, true> for L
where T: ComplexFloat + MulAssign<T::Real>, L: Lists<T> + Matrix<T, Width = usize>, L::RowOwned: OwnedList<T>, [(); { _ }]:,

source§

impl<T, L> Dwht<T, <L as MaybeLists<T>>::RowOwned, Option<<L as MaybeLists<T>>::RowOwned>, false> for L
where T: ComplexFloat + MulAssign<T::Real>, L: Lists<T>, L::RowOwned: OwnedList<T>,