[][src]Function microfft::real::rfft_64

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

Perform an in-place 64-point RFFT.

Example

use microfft::real::rfft_64;

let mut input = [0.; 64];
let result = rfft_64(&mut input);

Panics

Panics if input has a length other than 64.