Crates.io | dft |
lib.rs | dft |
version | 0.5.5 |
source | src |
created_at | 2015-06-30 11:02:43.409519 |
updated_at | 2017-12-06 08:00:59.317042 |
description | The package provides an algorithm to compute the discrete Fourier transform. |
homepage | https://github.com/stainless-steel/dft |
repository | https://github.com/stainless-steel/dft |
max_upload_size | |
id | 2502 |
size | 89,407 |
The package provides an algorithm to compute the discrete Fourier transform.
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);
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.