[][src]Trait basic_dsp::ToTimeResult

pub trait ToTimeResult {
    type TimeResult;
}

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

Associated Types

type TimeResult

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

Loading content...

Implementors

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

type TimeResult = DspVec<S, T, Complex, Time>

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

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

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

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

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

Loading content...