comp_irdgtii.m

来自「linear time-frequency toolbox」· M 代码 · 共 27 行

M
27
字号
function [cout]=comp_irdgtii(cin,a)%COMP_IRDGTII Compute inverse real DGT type II%M=size(cin,1);N=size(cin,2);W=size(cin,3);L=N*a;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 imaginary)if mod(M,2)==0  cout(M/2+1,:,:)=-i*cin(M,:,:);end;

⌨️ 快捷键说明

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