comp_idwiltii.m

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

M
44
字号
function [coef2]=comp_idwiltii(coef,a,M)%COMP_IDWILTII  Compute Inverse discrete Wilson transform type II% %   This is a computational routine. Do not call it%   directly.%   Author : Peter SoendergaardN=size(coef,1)/M;W=size(coef,2);L=N*a;coef=reshape(coef,M*2,N/2,W);coef2=zeros(2*M,N,W);% First and middle modulation are transferred unchanged.coef2(1,1:2:N,:) = coef(1,:,:);coef2(2:2:M,1:2:N,:)        = -i/sqrt(2)*coef(2:2:M,:,:);coef2(2*M:-2:M+2,1:2:N,:)   = -i/sqrt(2)*coef(2:2:M,:,:);coef2(2:2:M,2:2:N,:)        =  1/sqrt(2)*coef(M+2:2:2*M,:,:);coef2(2*M:-2:M+2,2:2:N,:)   = -1/sqrt(2)*coef(M+2:2:2*M,:,:);if M>2  coef2(3:2:M,1:2:N,:)        = 1/sqrt(2)*coef(3:2:M,:,:);  coef2(2*M-1:-2:M+2,1:2:N,:) = -1/sqrt(2)*coef(3:2:M,:,:);    coef2(3:2:M,2:2:N,:)        = -i/sqrt(2)*coef(M+3:2:2*M,:,:);  coef2(2*M-1:-2:M+2,2:2:N,:) = -i/sqrt(2)*coef(M+3:2:2*M,:,:);end;if mod(M,2)==0  coef2(M+1,2:2:N,:) = -i*coef(M+1,:,:);else  coef2(M+1,1:2:N,:) = -i*coef(M+1,:,:);end;

⌨️ 快捷键说明

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