vote up 1 vote down star

I've been looking everywhere for a sample Fast Fourier Transform implementation/tutorial in (preferably) C#.

However, every one I've found has been poor at explaining what's going on, and/or poorly commented; or they assume that you already know the FFT algorithm, or they're tutorials about how to USE FFTs.

Anyone know of a good sample/tutorial?

flag

55% accept rate
I assume FFT is Fast Fourier Transform? Might want to clarify that. – cletus Dec 26 '08 at 4:58
I don't see that this has any programming related content. It could just as easily be about knitting. – Mitch Wheat Dec 26 '08 at 5:36
Oh, so I should just knit something that computes a FFT then? This is just as much about programming as looking for a good terrain heightmap tutorial, or a good quicksort tutorial. All three are programmatic techniques. – TraumaPony Dec 26 '08 at 5:40
The internet has this thing called google.... – Mitch Wheat Dec 26 '08 at 5:42
Which I already have tried, to no avail, as already mentioned in the question. – TraumaPony Dec 26 '08 at 5:44
show 2 more comments

8 Answers

vote up 0 vote down

Google turns up a few:

The FFTW library is recommended as a solution fast FFTs.

link|flag
Yes, but the former has almost no comments, and the latter is highly optimised; not exactly an introductory 'this is how you do it' type thing. – TraumaPony Dec 26 '08 at 5:22
Maybe you ask for a tutorial, sheesh! – Mitch Wheat Dec 26 '08 at 5:26
vote up 1 vote down

Here is another one written in C.

http://www.archelon.com/fft.html

Also, can you make your question more specific. For example, do you want to compare the DFT to the FFT? Are you interested in why the FFT is so much faster?

If I remember correctly DFT is something like N^2 multiplications and the FFT is about N log N multiplications, where N is number of samples in the signal.

link|flag
@TraumaPony : are you going to be consistent and mark this answer down as well, since it doesn't satisfy your requirements??? – Mitch Wheat Dec 26 '08 at 5:50
It doesn't satisfy them, no, but it's still pretty clear and simple. – TraumaPony Dec 26 '08 at 6:17
vote up 1 vote down

Wikipedia has a great writeup of the FFT: http://en.wikipedia.org/wiki/Fft.

As far as implementations go, FFTW is the fastest I've ever used, but the code is extremely difficult to understand as it is crazy optimized. There are tons of links to basic FFT implementations, including plenty in C#; Google is your friend here.

link|flag
vote up 1 vote down

http://www.cmlab.csie.ntu.edu.tw/cml/dsp/training/coding/transform/fft.html (yeesh, i found this useful but the font and layout are horrible. i hope it's just my browser being weird)

link|flag
vote up 1 vote down

The old standard book for number crunching: Numerical Recipes, may have an sufficient explanation.

link|flag
Apparently, NR is outdated and possibly flawed in its FFT advice. – Mitch Wheat Dec 26 '08 at 7:23
i have heard that too, but don't recall exactly what the flaw is. Everyone be careful, YMMV, check the math yourself, etc... – DarenW Dec 26 '08 at 8:06
vote up 1 vote down

If you can find a copy, Musical Applications of Microprocessors by Hal Chamberlin, 1983 (?) may have a section of FFT - alas my copy is at work right now so i can't check the book specifically for FFT wisdom. But i did learn many basics of audio filtering, sampling etc. and there is plenty of material on Fourier transforms and their uses.

link|flag
Thanks, I'll hvae to look into picking one up. – TraumaPony Dec 26 '08 at 7:44
i love this book. got inspired to write a review on amazon just now. – DarenW Dec 26 '08 at 7:56
vote up 1 vote down

Apologies for lack of hyperlinks, I do not have permissions to add them :(

You are asking for two things here

1) An explanation of the FFT

Very briefly:

If you want to obtain the frequency domain representation of a signal you use the fourier transform, this is a mathematical transform which transforms a signal from the time domain to the frequency domain. When operating on digital signals we have a set of discrete samples so we must use the Discrete Fourier Transform or DFT. However this is a rather slow operation and is easily optimised, so we instead use a Fast Fourier Transform algorithm or FFT.

This is a large signal processing topic so I suggest you look for a signal processing book to use as a reference. I suggest "Digital Signal Processing: A Practical Approach". There is of course the ubiquitous wikipedia article as well.

2) An implementation of the FFT

Because of the highly optimised nature of the FFT platforms and languages often have specific implementations, you should check headers and documentation (typically it will be found in an 'audio' section) in case it is included in a standard library.

If you want to implement the algorithm yourself I recommend finding a copy of Numerical Recipes, this contains an entire chapter on the FFT, as well as a chapter on "Fourier and Spectral Applications". There is well documented pseudocode which should be easy to transcribe into any language.

For a third party solution a popular choice is FFTW, a C library. I google search for "FFT Library" will provide you with some alternatives.

link|flag
vote up 0 vote down

See kissfft on sourceforge. It lacks a bit of the speed of FFTW, but makes up for it in small size and readability. There is a pdf also on sourceforge about the derivation -- required if you are going to try to understand it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.