comp_irdgt.m
来自「linear time-frequency toolbox」· M 代码 · 共 28 行
M
28 行
function cout=comp_irdgt(cin,a,M)%COMP_IRDGT Compute inverse real DGT.N=size(cin,1)/M;W=size(cin,2);L=N*a;cin=reshape(cin,M,N,W);Mhalf=ceil(M/2);Mend=Mhalf*2-1;cout=zeros(M,N,W);% Copy the first coefficient, it is realcout(1,:,:)=cin(1,:,:);cout(2:Mhalf,:,:)=(cin(2:2:Mend,:,:)- i*cin(3:2:Mend,:,:))/sqrt(2);cout(M-Mhalf+2:M,:,:)= (cin(Mend-1:-2:2,:,:) +i*cin(Mend:-2:3,:,:))/sqrt(2);% If f has an even length, we must also copy the Nyquest-wave% (it is real)if mod(M,2)==0 cout(M/2+1,:,:)=cin(M,:,:);end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?