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

📄 adfig06.m

📁 老外写的小波变换的工具箱
💻 M
字号:
% adfig06 -- Adapt Figure 06: MultiResolution Analysis of the Four Functions
% 
% Mallat's MRA groups together all the terms in the wavelet 
% decomposition which occupy the same scale (with perhaps
% different locations).
%
% Here we display the MRA of the four functions from Figure 1,
% using the Daubechies Nearly Symmetric S8 Wavelet.
%
global Blocks Bumps HeaviSine Doppler
S8QMF = MakeONFilter('Symmlet',8);
L = 6; %clf;
% 
   subplot(221);
   xw = FWT_PO(Blocks,L,S8QMF);
   IMJPlotMultiRes(xw,L,.2,S8QMF);
   title(' 6 (a) Blocks ')
%
   subplot(222);
   xw = FWT_PO(Bumps,L,S8QMF);
   IMJPlotMultiRes(xw,L,.2,S8QMF);
   title(' 6 (b) Bumps ')
%
   subplot(223)
   xw = FWT_PO(HeaviSine,L,S8QMF);
   IMJPlotMultiRes(xw,L,.2,S8QMF);
   title(' 6 (c) HeaviSine ')
%
   subplot(224)
   xw = FWT_PO(Doppler,L,S8QMF);
   IMJPlotMultiRes(xw,L,.2,S8QMF);
   title(' 6 (d) 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 + -