A Rust library crate providing an [FFT] API for arrays and slices. This crate wraps the [rustfft] and [realfft] crates that does the heavy lifting behind the scenes.
realfft
feature requires the nightly
compiler because it depends on
the [genericconstexprs] feature```rust use approx::assertulpseq; use easyfft::Complex; use easyfft::Fft; use easyfft::Ifft;
// Define a real-valued signal let realsignal = [1.0f64; 10];
// Call .fft()
on the signal to obtain it's discrete fourier transform
let realsignaldft: [Complex
// Call .ifft()
on the frequency domain signal to obtain it's inverse
let realsignaldftidft: [Complex
// Verify the resulting signal is a scaled value of the original signal for (original, manipulated) in realsignal.iter().zip(realsignaldftidft) { assertulpseq!(manipulated.re, original * realsignal.len() as f64); assertulps_eq!(manipulated.im, 0.0); }
// Define a complex-valued signal let complexsignal = [Complex::new(1.0f64, 0.0); 10];
// Call .fft()
on the signal to obtain it's discrete fourier transform
let complexsignaldft: [Complex
// Call .ifft()
on the frequency domain signal to obtain it's inverse
let complexsignaldftidft: [Complex
// Verify the resulting signal is a scaled value of the original signal for (original, manipulated) in complexsignal.iter().zip(complexsignaldftidft) { assertulpseq!(manipulated.re, original.re * complexsignal.len() as f64); assertulpseq!(manipulated.im, original.im * complexsignal.len() as f64); } ```
See [realfft module] level documentation.
Currently you can create a RealDft
struct and mutate it using the DerefMut
trait in a way that the real_ifft
method will cause a panic. This should be
fixable in a future patch release currently pending implementation details.
There could be other bugs in this crate or it's dependencies that may cause a
panic, but in theory all the runtime panics have been moved to compile time
errors.