pub trait ToRealFreqMatrix<V, T>where
    V: Vector<T>,
    T: RealNumber,
{ type Output: Matrix<V, T>; 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

Required Methods

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

Implementors