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

#2128 in Algorithms

Download history 91/week @ 2024-11-16 135/week @ 2024-11-23 199/week @ 2024-11-30 176/week @ 2024-12-07 199/week @ 2024-12-14 22/week @ 2024-12-21 40/week @ 2024-12-28 105/week @ 2025-01-04 167/week @ 2025-01-11 135/week @ 2025-01-18 94/week @ 2025-01-25 89/week @ 2025-02-01 112/week @ 2025-02-08 117/week @ 2025-02-15 179/week @ 2025-02-22 65/week @ 2025-03-01

498 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