Trait ToRealFreqMatrix

Source
pub trait ToRealFreqMatrix<V, T>
where V: Vector<T>, T: RealNumber,
{ type Output: Matrix<V, T>; // Required method fn to_real_freq_mat(self) -> Self::Output; }
Expand description

Conversion from a generic data type into a dsp matrix with real data.

Required Associated Types§

Source

type Output: Matrix<V, T>

Required Methods§

Source

fn to_real_freq_mat(self) -> Self::Output

Create a new vector in real number space and frequency domain. delta can be changed after construction with a call of set_delta.

Implementations on Foreign Types§

Source§

impl<T, S> ToRealFreqMatrix<DspVec<S, T, Real, Freq>, T> for [S; 2]
where T: RealNumber, S: ToRealVector<T> + ToSlice<T>,

Source§

impl<T, S> ToRealFreqMatrix<DspVec<S, T, Real, Freq>, T> for [S; 3]
where T: RealNumber, S: ToRealVector<T> + ToSlice<T>,

Source§

impl<T, S> ToRealFreqMatrix<DspVec<S, T, Real, Freq>, T> for [S; 4]
where T: RealNumber, S: ToRealVector<T> + ToSlice<T>,

Source§

impl<T, S> ToRealFreqMatrix<DspVec<S, T, Real, Freq>, T> for Vec<S>
where T: RealNumber, S: ToRealVector<T> + ToSlice<T>,

Source§

type Output = MatrixMxN<DspVec<S, T, Real, Freq>, S, T>

Source§

fn to_real_freq_mat( self, ) -> <Vec<S> as ToRealFreqMatrix<DspVec<S, T, Real, Freq>, T>>::Output

Implementors§