📄 waveletpacket_reconstruction2.m
字号:
% 当前的扩展模式是zero-padding
%装载信号
load leleccum; x = leleccum;
% 使用db2小波包对信号x进行3层分解
wpt = wpdec(x,3,'db2');
subplot(211);
plot(x);
title('原始信号');
% 重构小波包结点(2,1)
rcfs = wprcoef(wpt,[2 1]);
subplot(212);
plot(rcfs);
title('重构小波包结点(2,1)');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -