A Rust library crate providing an [FFT] API for arrays. This crate wraps the
[rustfft] crate that does the heavy lifting behind the scenes. Use constfft
if you're working with [arrays], i.e. you know the size of the signal at
compile time.
Working with fft's and iffts should be simple: ```rust use approx::assertulpseq; use constfft::Complex; use constfft::Fft; use constfft::Ifft;
fn main() { // Define a real-valued signal let realsignal = [1.0f64; 10];
// Call `.fft` on the signal to obtain it's discrete fourier transform
let real_signal_dft: [Complex<f64>; 10] = real_signal.fft();
// Call `.ifft` on the frequency domain signal to obtain it's inverse
let real_signal_dft_idft: [Complex<f64>; 10] = real_signal_dft.ifft();
// Verify the resulting signal is a scaled value of the original signal
for (original, manipulated) in real_signal.iter().zip(real_signal_dft_idft) {
assert_ulps_eq!(manipulated.re, original * real_signal.len() as f64);
assert_ulps_eq!(manipulated.im, 0.0);
}
// Define a complex-valued signal
let complex_signal = [Complex::new(1.0_f64, 0.0); 10];
// Call `.fft` on the signal to obtain it's discrete fourier transform
let complex_signal_dft: [Complex<f64>; 10] = complex_signal.fft();
// Call `.ifft` on the frequency domain signal to obtain it's inverse
let complex_signal_dft_idft: [Complex<f64>; 10] = complex_signal_dft.ifft();
// Verify the resulting signal is a scaled value of the original signal
for (original, manipulated) in complex_signal.iter().zip(complex_signal_dft_idft) {
assert_ulps_eq!(manipulated.re, original.re * complex_signal.len() as f64);
assert_ulps_eq!(manipulated.im, original.im * complex_signal.len() as f64);
}
} ```
real_[i]fft
: issueCurrently I don't see any reason why the same API (minus the compile time size
checks) cannot be implementable on slices. This seems like a much nicer API to
work with and AFAICT does not depend on the types to be arrays. If this is the
case I'd implement the same API on slices and rename this crate to easyfft
.
There could be 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.