Effacer les filtres
Effacer les filtres

FFT Kernel

9 vues (au cours des 30 derniers jours)
Malathy
Malathy le 29 Mar 2012
How to find the Kernel that is used in Matlab for doing FFT. For eg. a = [2 2; 0 1] and when I call b = fft2(a), I get the result as [5 -1;3 1].
How to find the kernel matrix that is used for FFT calculation.

Réponses (2)

Wayne King
Wayne King le 29 Mar 2012
Hi The 2D DFT computes the DFT (as defined by the equation in the fft documentation) on the columns of a, and then it computes the DFT on the rows of that output. So
a = [2 2; 0 1];
b = fft2(a);
is equivalent to
b1 = fft(a); % compute DFT of the columns of a
b2 = fft(b1.'); % compute DFT of rows of b1

Malathy
Malathy le 29 Mar 2012
Kernel used is [ 1 1; 1 -1]
  1 commentaire
Palguna Gopireddy
Palguna Gopireddy le 9 Nov 2021
how?

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by