dftopm.m

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

M
31
字号
function B = dftopm(N,M)%DFTOPM generates a DFT operator matrix B such that the discrete 1D-Fourier%  transform of a spatial vector x is given by X = B*x. The DFT is defined %  in the same way as the Matlab standard fft.% %  B = dftopm(N,M)%  Size of operator matrix (M x N).%  N = # spatial samples.%  M = # frequency samples.%%  The inverse discrete Fourier transform matrix is %  Bi = conj(dftopm(N,N))/N%%See Also%  dftopm2d, dftmtx%   *  DBT, A Matlab Toolbox for Radar Signal Processing  *% (c) FOA 1994-2000. See the file dbtright.m for copyright notice.%%  Start        : xxxxx Svante Bj鰎klund (svabj).%  Latest change: $Date: 2000/10/16 15:40:09 $ $Author: svabj $.%  $Revision: 1.4 $% *****************************************************************************if (nargin < 2)  M = N;end;  B = exp(-i*2*pi*(1/M)*(0:M-1).' * (0:N-1));

⌨️ 快捷键说明

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