I am trying to implement a 2D FFT using 1D FFTs. I have a matrix of size 4×4 (row major)
My algorithm is:
- FFT on all 16 points
- bit reversal
- transpose
- FFT on 16 points
- bit reversal
- transpose
Is this correct?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No – the algorithm is:
So it’s 4 x 1D (horizontal) FFTs followed by 4 x 1D (vertical) FFTs, for a total of 8 x 1D FFTs.