Trait basic_dsp::ToComplexVectorPar [−][src]
pub trait ToComplexVectorPar<S, T> where
T: RealNumber,
S: ToSlice<T>, { fn to_complex_time_vec_par(self) -> DspVec<S, T, Complex, Time>; fn to_complex_freq_vec_par(self) -> DspVec<S, T, Complex, Freq>; }
Expand description
Conversion from a generic data type into a dsp vector with complex data.
The resulting vector may use multi-threading for its processing.
Required methods
fn to_complex_time_vec_par(self) -> DspVec<S, T, Complex, Time>[src]
fn to_complex_time_vec_par(self) -> DspVec<S, T, Complex, Time>[src]Create a new vector in complex number space and time domain.
delta can be changed after construction with a call of set_delta.
For complex vectors with an odd length the resulting value will have a zero length.
fn to_complex_freq_vec_par(self) -> DspVec<S, T, Complex, Freq>[src]
fn to_complex_freq_vec_par(self) -> DspVec<S, T, Complex, Freq>[src]Create a new vector in complex number space and frequency domain.
delta can be changed after construction with a call of set_delta.
For complex vectors with an odd length the resulting value will have a zero length.
Implementors
impl<Type, S, T> ToComplexVectorPar<S, T> for Type where
T: RealNumber,
S: ToSlice<T>,
Type: ToComplexVector<S, T> + ToSlice<T>, [src]
impl<Type, S, T> ToComplexVectorPar<S, T> for Type where
T: RealNumber,
S: ToSlice<T>,
Type: ToComplexVector<S, T> + ToSlice<T>, [src]