dftopm2d.m

来自「阵列信号处理的工具箱」· M 代码 · 共 28 行

M
28
字号
function B = dftopm2d(K,N)%DFTOPM2D generates a DFT operator matrix B such that the discrete 2D-Fourier%  transform of a spatial matrix x is given by X = reshape(B*x(:),M,M).%  The DFT is defined in the same way as the Matlab standard fft2.% %  B = dftopm2d(N,M)B%  K = # spatial samples. x is (K x K).%  N = # frequency samples. X is (N x N).%%See Also%  dftopm, dftmtx%   *  DBT, A Matlab Toolbox for Radar Signal Processing  *% (c) FOA 1994-2000. See the file dbtright.m for copyright notice.%%  Start        : xxxxxx Svante Bj鰎klund (svabj).%  Latest change: $Date: 2000/10/16 15:40:10 $ $Author: svabj $.%  $Revision: 1.3 $% *****************************************************************************if (nargin < 2)  N = K;end;  B1=dftopm(K,N);B = kron(B1,B1);

⌨️ 快捷键说明

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