ToRealVectorPar

Trait ToRealVectorPar 

Source
pub trait ToRealVectorPar<T>: Sized + ToSlice<T>
where T: RealNumber,
{ // Required methods fn to_real_time_vec_par(self) -> RealTimeVec<Self, T>; fn to_real_freq_vec_par(self) -> RealFreqVec<Self, T>; }
Expand description

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§

Source

fn to_real_time_vec_par(self) -> RealTimeVec<Self, T>

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.

Source

fn to_real_freq_vec_par(self) -> RealFreqVec<Self, T>

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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<Type: ToRealVector<T>, T: RealNumber> ToRealVectorPar<T> for Type