[][src]Function microfft::complex::cfft_32

pub fn cfft_32(input: &mut [Complex32]) -> &mut [Complex32]

Perform an in-place 32-point CFFT.

Example

use microfft::{Complex32, complex::cfft_32};

let mut input = [Complex32::default(); 32];
let result = cfft_32(&mut input);

Panics

Panics if input has a length other than 32.