⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dft2.m

📁 matlab算法集 matlab算法集
💻 M
字号:

function Y = dft2 (X,dir)
%----------------------------------------------------------------
% Usage:       Y = dft2 (X,dir)
%
% Description: Compute the two-dimensional discrete Fourier 
%              transform (DFT) or its inverse.  When the number
%              of rows and columns of X is power of 2, use the
%              efficient fast Fourier transform (FFT) technique.
%
% Inputs:      X   = m by n complex matrix containing samples
%                    to be transformed.
%              dir = direction code.  If dir >= 0, compute
%                    the forwared DFT of X, otherwise compute 
%                    the inverse DFT of X.
%
% Outputs:     Y = m by n matrix containing transformed samples.
%----------------------------------------------------------------
   if dir >= 1
      Y = fft2 (X);
   else
      Y = ifft2 (X);
   end 
%----------------------------------------------------------------

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -