[][src]Trait basic_dsp::matrix::ToRealTimeMatrix

pub trait ToRealTimeMatrix<V, T> where
    T: RealNumber,
    V: Vector<T>, 
{ type Output: Matrix<V, T>; fn to_real_time_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_time_mat(self) -> Self::Output

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

Loading content...

Implementations on Foreign Types

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

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

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

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

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

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

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

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

Loading content...

Implementors

Loading content...