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
- 50 688
- -26 -6
- -10 -16
- 6.0 -26
Expected output
- 50 688
- 6 -26
- -10 -16
- -26 -6
Google search “how to compute inverse FFT”. Top result:
http://www.adamsiembida.com/node/23
The equation:
conj()means “complex conjugate”, which basically just means multiplying all the complex values by-1.http://en.wikipedia.org/wiki/Complex_conjugate