Struct rustfft::algorithm::butterflies::Butterfly32[][src]

pub struct Butterfly32<T> { /* fields omitted */ }

Methods

impl<T: FFTnum> Butterfly32<T>
[src]

Trait Implementations

impl<T: FFTnum> FFTButterfly<T> for Butterfly32<T>
[src]

Computes the FFT in-place in the given buffer Read more

Divides the given buffer into chunks of length self.len() and computes an in-place FFT on each chunk Read more

impl<T: FFTnum> FFT<T> for Butterfly32<T>
[src]

Computes an FFT on the input buffer and places the result in the output buffer. Read more

Divides the input and output buffers into chunks of length self.len(), then computes an FFT on each chunk. Read more

impl<T> Length for Butterfly32<T>
[src]

The FFT size that this algorithm can process

impl<T> IsInverse for Butterfly32<T>
[src]

Returns false if this instance computes forward FFTs, true for inverse FFTs

Auto Trait Implementations

impl<T> Send for Butterfly32<T> where
    T: Send

impl<T> Sync for Butterfly32<T> where
    T: Sync