dft

Crates.iodft
lib.rsdft
version0.5.5
sourcesrc
created_at2015-06-30 11:02:43.409519
updated_at2017-12-06 08:00:59.317042
descriptionThe package provides an algorithm to compute the discrete Fourier transform.
homepagehttps://github.com/stainless-steel/dft
repositoryhttps://github.com/stainless-steel/dft
max_upload_size
id2502
size89,407
Owners (github:buoyantio:owners)

documentation

https://docs.rs/dft

README

DFT Package Documentation Build

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

Example

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

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

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.

Commit count: 103

cargo fmt