Trait basic_dsp_matrix::ToComplexFreqMatrix

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

Conversion from a generic data type into a dsp vector with complex data.

Required Associated Types§

source

type Output: Matrix<V, T>

Required Methods§

source

fn to_complex_freq_mat(self) -> Self::Output

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

For complex matrices with an odd length the resulting value will have a zero length.

Implementors§