%% 学习目标:多层小波的重构
%% 程序1
clear all;
close all;
load noissin.mat;
x=noissin;
[C,L]=wavedec(x,3,'db1'); %小波多层分解
y=waverec(C,L,'db1'); %重构,必须小波类型一致
e=max(abs(x-y)) %重构的误差
%% 程序2
clear all;
close all;
load noissin.mat;
x=noissin;
[C,L]=wavedec(x,3,'db1'); %3层小波分解
A=wrcoef('a',C,L,'db1'); %对近似系数进行单支重构,去掉了高频部分
D1=wrcoef('d',C,L,'db1',1); %对细节系数进行单支重构
D2=wrcoef('d',C,L,'db1',2);
D3=wrcoef('d',C,L,'db1',3);
figure;
subplot(511);
plot(x);
subplot(512);
plot(A);
subplot(513);
plot(D1);
subplot(514);
plot(D2);
subplot(515);
plot(D3);
set(gcf,'position',[50,50,800,600]);文章来源地址https://www.toymoban.com/news/detail-739607.html
文章来源:https://www.toymoban.com/news/detail-739607.html
到了这里,关于MATLAB——多层小波的重构的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!