Trait basic_dsp_matrix::ToRealTimeMatrix

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

Conversion from a generic data type into a dsp matrix with real data.

Required Associated Types§

source

type Output: Matrix<V, T>

Required Methods§

source

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.

Implementations on Foreign Types§

source§

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

§

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

source§

fn to_real_time_mat(self) -> Self::Output

source§

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

§

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

source§

fn to_real_time_mat(self) -> Self::Output

source§

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

§

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

source§

fn to_real_time_mat(self) -> Self::Output

source§

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

§

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

source§

fn to_real_time_mat(self) -> Self::Output

Implementors§