[][src]Function microfft::real::rfft_32

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

Perform an in-place 32-point RFFT.

Example

use microfft::real::rfft_32;

let mut input = [0.; 32];
let result = rfft_32(&mut input);

Panics

Panics if input has a length other than 32.