constfft

A Rust library crate providing an [FFT] API for arrays. This crate wraps the [rustfft] and [realfft] crates 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.

Advantages

Current limitations

Possible future plans

Currently 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.