feldspar-language-0.7: A functional embedded language for DSP and parallelism

Safe HaskellNone
LanguageHaskell2010

Feldspar.Algorithm.FFT

Synopsis

Documentation

fft :: Vector1 (Complex Float) -> Vector1 (Complex Float) Source

Radix-2 Decimation-In-Frequeny Fast Fourier Transformation of the given complex vector The given vector must be power-of-two sized, (for example 2, 4, 8, 16, 32, etc.)

ifft :: Vector1 (Complex Float) -> Vector1 (Complex Float) Source

Radix-2 Decimation-In-Frequeny Inverse Fast Fourier Transformation of the given complex vector The given vector must be power-of-two sized, (for example 2, 4, 8, 16, 32, etc.)