Reputation: 313
I am trying to implement a 2D FFT using 1D FFTs. I have a matrix of size 4x4 (row major)
My algorithm is:
Is this correct?
Upvotes: 18
Views: 15925
Reputation: 212929
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.
Upvotes: 30