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

#1908 in Algorithms

Download history 173/week @ 2024-07-21 171/week @ 2024-07-28 135/week @ 2024-08-04 179/week @ 2024-08-11 142/week @ 2024-08-18 194/week @ 2024-08-25 141/week @ 2024-09-01 180/week @ 2024-09-08 155/week @ 2024-09-15 180/week @ 2024-09-22 153/week @ 2024-09-29 7/week @ 2024-10-06 102/week @ 2024-10-13 93/week @ 2024-10-20 130/week @ 2024-10-27 148/week @ 2024-11-03

474 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

~275KB