15 releases

Uses old Rust 2015

0.5.5 Dec 6, 2017
0.5.4 Mar 4, 2017
0.5.3 Nov 8, 2016
0.4.3 Apr 17, 2016
0.2.1 Jul 1, 2015

#1462 in Algorithms

Download history 154/week @ 2023-11-28 138/week @ 2023-12-05 140/week @ 2023-12-12 200/week @ 2023-12-19 164/week @ 2023-12-26 72/week @ 2024-01-02 177/week @ 2024-01-09 173/week @ 2024-01-16 83/week @ 2024-01-23 106/week @ 2024-01-30 164/week @ 2024-02-06 209/week @ 2024-02-13 131/week @ 2024-02-20 175/week @ 2024-02-27 171/week @ 2024-03-05 161/week @ 2024-03-12

643 downloads per month
Used in 78 crates (6 directly)

Apache-2.0/MIT

30KB
262 lines

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.

Dependencies

~365KB