[][src]Function microfft::real::rfft_1024

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

Perform an in-place 1024-point RFFT.

Example

use microfft::real::rfft_1024;

let mut input = [0.; 1024];
let result = rfft_1024(&mut input);

Panics

Panics if input has a length other than 1024.