[][src]Trait basic_dsp_matrix::ToRealFreqMatrix

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

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

Associated Types

type Output: Matrix<V, T>

Loading content...

Required methods

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.

Loading content...

Implementations on Foreign Types

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

type Output = MatrixMxN<RealFreqVec<S, T>, S, T>

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

type Output = Matrix2xN<RealFreqVec<S, T>, S, T>

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

type Output = Matrix3xN<RealFreqVec<S, T>, S, T>

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

type Output = Matrix4xN<RealFreqVec<S, T>, S, T>

Loading content...

Implementors

Loading content...