Trait basic_dsp_matrix::ToRealTimeMatrix [] [src]

pub trait ToRealTimeMatrix<V, T> where V: Vector<T>, T: RealNumber {
    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

Required Methods

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

Implementors