[][src]Function microfft::complex::cfft_128

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

Perform an in-place 128-point CFFT.

Example

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

let mut input = [Complex32::default(); 128];
let result = cfft_128(&mut input);

Panics

Panics if input has a length other than 128.