[][src]Function microfft::real::rfft_512

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

Perform an in-place 512-point RFFT.

Example

use microfft::real::rfft_512;

let mut input = [0.; 512];
let result = rfft_512(&mut input);

Panics

Panics if input has a length other than 512.