chfft

crates.io badge Build Status docs.rs Coverage Status

Fastest Fourier Transform library implemented with pure Rust.

How-to Use

See the crate documentation for more details.

Features

Examples

```rust extern crate chfft; extern crate numcomplex; use numcomplex::Complex; use chfft::CFft1D;

fn main() { let input = [Complex::new(2.0, 0.0), Complex::new(1.0, 1.0), Complex::new(0.0, 3.0), Complex::new(2.0, 4.0)]; let mut fft = CFft1D::::with_len(input.len()); let output = fft.forward(&input); println!("the transform of {:?} is {:?}", input, output); } ```