• 大小: 700B
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-10
  • 语言: Matlab
  • 标签: 小波变换  

资源简介

用小波变换对信号进行消噪重构。更多资料可以查看参考书Matlab数字信号处理与应用。

资源截图

代码片段和文件信息

%例程6-8  方波信号的离散小波变换
% e.g.6-8.m for example6-8;
%test the function of dwt

clear all;
t=0:.01*pi:10*pi;
x=square(t80);
X=x+randn(size(x))/10;
subplot(311); plot(tX);
xlabel(‘Time t‘);
axis([0 11*pi  -2 2]);
ylabel(‘Amplitude X‘);
title(‘Analyzed signal ‘)
 
% Perform single-level discrete wavelet transform of X by haar
%and the kind of signal extension mode is zero-padding extension.  
[ca1cd1] = dwt(X‘haar‘‘mode‘‘zpd‘); 
subplot(323); plot(ca1); title(‘Approx. coef. for haar‘); 
subplot(324); plot(cd1); title(‘Detail coef. for haar‘);
 
% Perform single-level discrete wavelet transform of X by coif4use the default mode .
% and observe edge effects for last coefficients.
[ca2cd2] = dwt(X‘coif4‘‘mode‘‘sym‘);
subplot(325); plot(ca2); title(‘Approx. coef. for coif4‘); 
subplot(326); plot(cd2); title(‘Detail coef. for coif4‘);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        885  2007-07-14 17:19  连续信号的小波变换\6-8.m

     目录          0  2010-03-09 17:22  连续信号的小波变换

----------- ---------  ---------- -----  ----

                  885                    2


评论

共有 条评论