Registry / other / rustfft

rustfft

JSON →
library6.4.1rscratesunverified

High-performance FFT library written in pure Rust.

# Cargo.toml [dependencies] rustfft = "6.4.1"
INSTALL
IMPORT
SIG · RUSTFFT
R
rustfft
otherrustv6.4.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

FFTplanner
use rustfft::FFTplanner;

Plans and executes a 1024-point FFT.

use rustfft::FFTplanner; use rustfft::num_complex::Complex; let mut planner = FFTplanner::new(false); let fft = planner.plan_fft(1024); let mut buffer = vec![Complex::new(0.0, 0.0); 1024]; fft.process(&mut buffer);
Debug
Known issues

No known issues recorded.

Upgrade
Version history
6.4.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
12
Resources
rustfft — cargo add rustfft · libregistry