[][src]Trait basic_dsp::ToFreqResult

pub trait ToFreqResult {
    type FreqResult;
}

Specifies what the the result is if a type is transformed to frequency domain.

Associated Types

Loading content...

Implementors

impl<S, T> ToFreqResult for DspVec<S, T, Complex, Time> where
    S: ToSlice<T>,
    T: RealNumber
[src]

type FreqResult = DspVec<S, T, Complex, Freq>

impl<S, T> ToFreqResult for DspVec<S, T, Real, Time> where
    S: ToSlice<T>,
    T: RealNumber
[src]

type FreqResult = DspVec<S, T, Complex, Freq>

impl<S, T> ToFreqResult for DspVec<S, T, RealOrComplex, TimeOrFreq> where
    S: ToSlice<T>,
    T: RealNumber
[src]

impl<V, S, T> ToFreqResult for Matrix2xN<V, S, T> where
    S: ToSlice<T>,
    T: RealNumber,
    V: Vector<T> + ToFreqResult,
    <V as ToFreqResult>::FreqResult: Vector<T>, 
[src]

impl<V, S, T> ToFreqResult for Matrix3xN<V, S, T> where
    S: ToSlice<T>,
    T: RealNumber,
    V: Vector<T> + ToFreqResult,
    <V as ToFreqResult>::FreqResult: Vector<T>, 
[src]

impl<V, S, T> ToFreqResult for Matrix4xN<V, S, T> where
    S: ToSlice<T>,
    T: RealNumber,
    V: Vector<T> + ToFreqResult,
    <V as ToFreqResult>::FreqResult: Vector<T>, 
[src]

impl<V, S, T> ToFreqResult for MatrixMxN<V, S, T> where
    S: ToSlice<T>,
    T: RealNumber,
    V: Vector<T> + ToFreqResult,
    <V as ToFreqResult>::FreqResult: Vector<T>, 
[src]

Loading content...