📄 discrete_reconstruction5.m
字号:
%装载sumsin信号
load sumsin;
s = sumsin;
%用小波函数db1对信号进行三尺度小波分解
[C,L]=wavedec(s,3,'db1');
subplot(3,1,1);
plot(s);
title(' sumsin原始信号');
%获得尺度2的小波分解
[nc,nl] = upwlev(C,L,'db1');
subplot(3,1,2);
plot(C);
title('尺度3的低频系数和尺度3、2、1的高频系数');
subplot(3,1,3);
plot(nc);
title('尺度2的低频系数和尺度2、1的高频系数');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -