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

📄 wavelet6.m

📁 小波在信号处理中的应用
💻 M
字号:
% data=textread('data.txt');
load leleccum;
indx=1:1024;
x=data(indx);
figure(1);
subplot(2,1,1);
plot(x);
[c,l]=wavedec(x,3,'db5');
n=[1,2,3];
p=[120,110,100];
nc=wthcoef('d',c,l,3,70);
rx=waverec(nc,l,'db5');
% subplot(2,2,1);
% plot(data);
subplot(2,1,2);
plot(rx);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -