Type Alias basic_dsp_vector::ComplexFreqVec

source ·
pub type ComplexFreqVec<S, T> = DspVec<S, T, Complex, Freq>;
Expand description

A vector with complex numbers in frequency domain.

Aliased Type§

struct ComplexFreqVec<S, T> {
    pub data: S,
    /* private fields */
}

Fields§

§data: S

The underlying storage. self.len() should be called to find out how many elements in data contain valid data.

Trait Implementations§

source§

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

source§

fn from(data: S) -> Self

Converts to this type from the input type.
source§

impl<S, T, N, D> RededicateForceOps<DspVec<S, T, N, D>> for ComplexFreqVec<S, T>
where S: ToSlice<T>, T: RealNumber, N: NumberSpace, D: Domain,

source§

fn rededicate_from_force(origin: DspVec<S, T, N, D>) -> Self

Make Other a Self without performing any checks.
source§

fn rededicate_with_runtime_data( origin: DspVec<S, T, N, D>, _: bool, _: DataDomain ) -> Self

Make Other a Self without performing any checks. Read more
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> ToRealTimeResult for ComplexFreqVec<S, T>
where S: ToSlice<T>, T: RealNumber,

source§

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

§

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

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