Reputation: 313
I have a radix4 FFT that works in forward direction. How different is the inverse fft from froward? I think the only difference is twiddle factors. My code is a modified version of Source. Can some one enlighten me on this. Thanks.
My output
Expected output
Upvotes: 0
Views: 320
Reputation: 76735
Google search "how to compute inverse FFT". Top result:
http://www.adamsiembida.com/node/23
The equation:
IFFT(X) = 1/N * conj(FFT(conj(X)))
conj()
means "complex conjugate", which basically just means multiplying all the complex values by -1
.
http://en.wikipedia.org/wiki/Complex_conjugate
Upvotes: 4