Difference between FFT(FFT(X)) ,FFT2(X) and FFT(X,[ ],2)

4 views (last 30 days)
What is the difference between FFT(FFT(X)) ,FFT2(X) and FFT(X,[ ],2) ?

Accepted Answer

dpb
dpb on 25 Jun 2021
As the doc for fft2 shows
fft2(X) == fft(fft(X).')
or the 2D FFT is computed sequentially by 1D and then transposing and 1D the other way.
fft(X,[],2)
is just 1D FFT but by row (2nd dimension) instead of the default by column if X is 2D array.

More Answers (0)

Categories

Find more on Read, Write, and Modify Image in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!