[][src]Trait basic_dsp::matrix::ToComplexTimeMatrix

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

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

Associated Types

type Output: Matrix<V, T>

Loading content...

Required methods

fn to_complex_time_mat(self) -> Self::Output

Create a new matrix in complex number space and time 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.

Loading content...

Implementations on Foreign Types

impl<T, S> ToComplexTimeMatrix<DspVec<S, T, Complex, Time>, T> for [S; 4] where
    S: ToComplexVector<S, T> + ToSlice<T>,
    T: RealNumber
[src]

type Output = Matrix4xN<DspVec<S, T, Complex, Time>, S, T>

impl<T, S> ToComplexTimeMatrix<DspVec<S, T, Complex, Time>, T> for [S; 2] where
    S: ToComplexVector<S, T> + ToSlice<T>,
    T: RealNumber
[src]

type Output = Matrix2xN<DspVec<S, T, Complex, Time>, S, T>

impl<T, S> ToComplexTimeMatrix<DspVec<S, T, Complex, Time>, T> for Vec<S> where
    S: ToComplexVector<S, T> + ToSlice<T>,
    T: RealNumber
[src]

type Output = MatrixMxN<DspVec<S, T, Complex, Time>, S, T>

impl<T, S> ToComplexTimeMatrix<DspVec<S, T, Complex, Time>, T> for [S; 3] where
    S: ToComplexVector<S, T> + ToSlice<T>,
    T: RealNumber
[src]

type Output = Matrix3xN<DspVec<S, T, Complex, Time>, S, T>

Loading content...

Implementors

Loading content...