[][src]Function microfft::complex::cfft_1024

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

Perform an in-place 1024-point CFFT.

Example

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

let mut input = [Complex32::default(); 1024];
let result = cfft_1024(&mut input);

Panics

Panics if input has a length other than 1024.