DFT Version Status

The package provides an algorithm to compute the discrete Fourier transform.

Documentation

Example

```rust use dft::{Operation, Plan, c64};

let size = 512; let plan = Plan::new(Operation::Forward, size); let mut data = vec![c64::new(42.0, 69.0); size];

dft::transform(&mut data, &plan); ```

Contributing

  1. Fork the project.
  2. Implement your idea.
  3. Open a pull request.