Trait basic_dsp::ToRealVector[][src]

pub trait ToRealVector<T>: ToSlice<T> where
    T: RealNumber
{ fn to_real_time_vec(self) -> DspVec<Self, T, Real, Time>;
fn to_real_freq_vec(self) -> DspVec<Self, T, Real, Freq>; }
Expand description

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

Required methods

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

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

Implementations on Foreign Types

Implementors