⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 idfig09.m

📁 老外写的小波变换的工具箱
💻 M
字号:
% idfig09 -- Ideal Figure 09: Examples of VisuShrink Thresholding
%
% Here we aapply the ``Visu'' thresholding rule to the
% four noisy signals depicted in Figure 3.
%
% The procedure for DeNoising:
%       1.  Transform to Wavelet Domain, Using Nearly Symmetric Wavelet
%           with 8 vanishing moments.
%       2.  Apply a soft thresholding nonlinearity, with threshold set to
%           sqrt{2 log(n)}
%       3.  Transform back to the signal domain.
% 
% The reconstructions suppress the noise, while preserving the sharp structure
% in the neighborhood of the highly-variable spatial components. The nearly
% noise-free structure of the reconstructions is appealing to us.
%
global wblocks wbumps wheavi wDoppler
global yblocks ybumps yheavi yDoppler %AM 10/05

global L qmf 
global t
%
wblocks = FWT_PO(yblocks,L,qmf);      %AM 10/05
wbumps = FWT_PO(ybumps,L,qmf);        %AM 10/05
wheavi = FWT_PO(yheavi,L,qmf);        %AM 10/05
wDoppler = FWT_PO(yDoppler,L,qmf);    %AM 10/05
%
	shbumps    = MultiVisu(wbumps,L); sbumps  = IWT_PO(shbumps,L,qmf);
	shblocks  = MultiVisu(wblocks,L); sblocks = IWT_PO(shblocks,L,qmf);
	shheavi    = MultiVisu(wheavi,L); sheavi  = IWT_PO(shheavi,L,qmf);
	shDoppler = MultiVisu(wDoppler,L);sDoppler = IWT_PO(shDoppler,L,qmf);
%
	%clf; 
    claxis;
	versaplot(221,t,sblocks, [],' 9 (a) VisuShrink[Blocks] '   ,[],[])
	versaplot(222,t,sbumps,  [],' 9 (b) VisuShrink[Bumps] '    ,[],[])
	versaplot(223,t,sheavi,  [],' 9 (c) VisuShrink[HeaviSine] ',[],[])
	versaplot(224,t,sDoppler,[],' 9 (d) VisuShrink[Doppler] '  ,[],[])
 
    
    
    
  %%  Part of Wavelab Version 850%  Built Tue Jan  3 13:20:41 EST 2006%  This is Copyrighted Material%  For Copying permissions see COPYING.m%  Comments? e-mail wavelab@stat.stanford.edu 

⌨️ 快捷键说明

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