这个信号的小波分解和重构怎么做。大虾,帮帮忙
数据在附件里,大虾帮帮我,我的邮箱heqiangyong1@sina.com[ 本帖最后由 zhangnan3509 于 2008-7-5 16:08 编辑 ]
回复 楼主 的帖子
我记得matlab教材上都有代码吧 好像是飞思科出版的 与小波相关的Matlab教材 s=load('qgl94_5.dat');% Decompose the signal s at level 5 using the wavelet db3.
w = 'db3';
= wavedec(s,5,w);
% Reconstruct the details using the decomposition structure.
for i = 1:5
D(i,:) = wrcoef('d',c,l,w,i);
end
% Avoid edge effects by suppressing edge values and plot.
tt = 1+100:length(s)-100;
subplot(6,1,1); plot(tt,s(tt),'r');
for i = 1:5
subplot(6,1,i+1); plot(tt,D(5-i+1,tt),'g');
end
回复 3楼 的帖子
谢谢,非常感谢你!!!!!!!!!!! 谢谢,认真研究研究,要好好学习学习!
页:
[1]