dft 0.4.0

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

DFT Version Status

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

Documentation

Example

use dft::{Operation, Plan, Transform, c64};

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

data.transform(&plan);

Contributing

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