/fftw-example

Simple example demonstrating a frequency transform with FFTW

Primary LanguageC

This example provides an extremely simple demonstration of FFTW, the Fastest Fourier Transform in the West. To run the example, you'll need to install FFTW based on the instructions on the site. If you're on a Mac and have Homebrew installed, you can just type:

brew install fftw

Compilation instructions vary by platform. On the Mac and other UNIX-like systems, you should just be able to type:

g++ -lfftw3 fftw_example.c

Enjoy!