📄 dft2.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 + -