Trait basic_dsp_vector::ToRealResult

source ·
pub trait ToRealResult {
    type RealResult;
}
Expand description

Specifies what the the result is if a type is transformed to real numbers.

Required Associated Types§

Implementors§

source§

impl<S, T> ToRealResult for ComplexFreqVec<S, T>
where S: ToSlice<T>, T: RealNumber,

§

type RealResult = DspVec<S, T, Real, Freq>

source§

impl<S, T> ToRealResult for ComplexTimeVec<S, T>
where S: ToSlice<T>, T: RealNumber,

§

type RealResult = DspVec<S, T, Real, Time>

source§

impl<S, T> ToRealResult for GenDspVec<S, T>
where S: ToSlice<T>, T: RealNumber,