Matlab小波工具箱入门.docVIP

  • 5
  • 0
  • 约3.34千字
  • 约 11页
  • 2016-04-12 发布于安徽
  • 举报
Matlab小波工具箱入门.doc

使用 MATLAB 小波工具箱进行小波分析: ?? ? 如上图所示的小波分解过程,可以调用 wfilters 来获得指定小波的分解和综合滤波器系数,例如: % Set wavelet name. wname = db5; % Compute the four filters associated with wavelet name given % by the input string wname. [Lo_D,Hi_D,Lo_R,Hi_R] = wfilters(wname); subplot(221); stem(Lo_D); title(Decomposition low-pass filter); subplot(222); stem(Hi_D); title(Decomposition high-pass filter); subplot(223); stem(Lo_R); title(Reconstruction low-pass filter); subplot(224); stem(Hi_R); title(Reconstruction high-pass filter); xlabel(The four filters for db5) % Editing some graphical properties, % the followin

文档评论(0)

1亿VIP精品文档

相关文档