[][src]Trait basic_dsp::ToRealVectorPar

pub trait ToRealVectorPar<T>: ToSlice<T> where
    T: RealNumber
{ fn to_real_time_vec_par(self) -> DspVec<Self, T, Real, Time>;
fn to_real_freq_vec_par(self) -> DspVec<Self, T, Real, Freq>; }

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

The resulting vector may use multi-threading for its processing.

Required methods

fn to_real_time_vec_par(self) -> DspVec<Self, T, Real, Time>

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

The resulting vector may use multi-threading for its processing.

fn to_real_freq_vec_par(self) -> DspVec<Self, T, Real, Freq>

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

The resulting vector may use multi-threading for its processing.

Loading content...

Implementors

impl<Type, T> ToRealVectorPar<T> for Type where
    T: RealNumber,
    Type: ToRealVector<T>, 
[src]

Loading content...