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

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

Methods

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

Trait Implementations

impl<T: FFTnum> FFTButterfly<T> for Butterfly16<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 Butterfly16<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 self.len() chunks, then computes an FFT on each chunk. Read more

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

The FFT size that this algorithm can process

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

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