oxifft 0.3.1

Pure Rust implementation of FFTW - the Fastest Fourier Transform in the West
Documentation
1
2
3
4
5
6
7
8
9
10
// ndarray integration — opt-in via `ndarray` cargo feature
#[cfg(feature = "ndarray")]
pub mod ndarray_ext;

#[cfg(feature = "ndarray")]
pub use ndarray_ext::{FftExt, NdarrayFftError, RealFftExt};

// Test module
#[cfg(all(test, feature = "ndarray"))]
mod ndarray_tests;