[][src]Struct ffts::complex::FFTSComplex

pub struct FFTSComplex {
    pub re: f32,
    pub im: f32,
}

32-bit aligned complex number (see ffts.h)

Fields

re: f32im: f32

Methods

impl FFTSComplex[src]

pub fn vec_from_real(real: &[f32]) -> Vec<Self>[src]

Convert a real f32 to a FFTSComplex with the imaginary values set to 0

pub fn vec_to_real(complex: &[Self]) -> Vec<f32>[src]

Get a real f32 from the real values of a FFTSComplex

Trait Implementations

impl PartialEq<FFTSComplex> for FFTSComplex[src]

impl Clone for FFTSComplex[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for FFTSComplex[src]

impl Debug for FFTSComplex[src]

Auto Trait Implementations

impl Send for FFTSComplex

impl Sync for FFTSComplex

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]