📄 toon0161.asv
字号:
% toon0161 -- Visualize multi-resolution decomposition
%
% Multi-resolution Decomposition is an idea of Stephane Mallat
% and Yves Meyer. One groups together all the wavelets at a
% given resolution, and displays the superposition of all the
% wavelets in a group.
%
% In this display, one can see that the fine-resolution components
% of object Ramp are nearly all concentrated at the singularity,
% and the fine-resolution components of object doppler are nearly
% all concentrated at the early times.
%
t = (1:1024)./1024;
Ramp = MakeSignal('Ramp',1024);
%
subplot(221); plot(t,Ramp); title('Object Ramp')
subplot(223);
QMF_Filter = MakeONFilter('Symmlet',8);
wc = FWT_PO(Ramp,3,QMF);
PlotMultiRes(wc,3,2.,QMF);
title('MRA[Ramp]');
%
Doppler = MakeSignal('Doppler',1024);
subplot(222); plot(t,Doppler); title('Object Doppler')
subplot(224);
Dwc = FWT_PO(Doppler,3,QMF);
PlotMultiRes(Dwc,3,2.,QMF);
title('MRA[Doppler]');
%
% Part of WaveLab Version 802
% Built Sunday, October 3, 1999 8:52:27 AM
% 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 + -