hmatrix-0.10.0.1: Linear algebra and numerical computation

Portabilityuses ffi
Stabilityprovisional
MaintainerAlberto Ruiz (aruiz at um dot es)

Numeric.GSL.Fourier

Description

Synopsis

Documentation

fft :: Vector (Complex Double) -> Vector (Complex Double)Source

Fast 1D Fourier transform of a Vector (Complex Double) using gsl_fft_complex_forward. It uses the same scaling conventions as GNU Octave.

> fft (fromList [1,2,3,4])
vector (4) [10.0 :+ 0.0,(-2.0) :+ 2.0,(-2.0) :+ 0.0,(-2.0) :+ (-2.0)]

ifft :: Vector (Complex Double) -> Vector (Complex Double)Source

The inverse of fft, using gsl_fft_complex_inverse.