资源简介
用小波变换对信号进行消噪重构。更多资料可以查看参考书Matlab数字信号处理与应用。
![](http://www.nz998.com/pic/47664.jpg)
代码片段和文件信息
%例程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
相关资源
- 图像小波变换MatLab源代码
- 图像的二进小波分解matlab源码(保证
- 同步挤压小波变换分离混沌干扰 mat
- 小波变换工具箱
- matlab实现一维和二维离散小波变换,
- 基于运动想象脑电信号的多特征融合
- 小波变换图像融合的matlab实现
- 小波变换法图像融合MATLAB代码
- 使用Matlab7.3开发的使用整数小波变换
- 小波变换及其MATLAB工具的应用.pdf
- 小波变换及其MATLAB工具的应用电子书
- MATLAB小波变换图像拼接技术GUI版.zip
- matlab 实现一维和二维离散小波变换,
- 图片二维小波变换的分解与重构_mat
- 用MATLAB实现基于小波变换的图像融合
- MATLAB小波变换图像处理总结
- 基于行列像素置乱和DWT小波变换的图
- 小波分析理论与matlab7实现(pdf扫描)
- matlab数字音频水印的研究与实现
- EWT 经验小波变换matlab源程序
- MATLAB小波变换.pdf
- 基于小波变换的图像压缩与matlab仿真
- matlab小波变换的代码
- 基于小波变换的信号降噪研究及其M
- matlab利用小波变换进行数字图像水印
- 地震波fft变换、小波变换对比分析m
- 采用小波变换对信号进行时频分析的
- 小波变换降噪处理及其Matlab实现
- 沙威老师构造正交小波变换矩阵的m
- 自相关与小波变换相结合法求一帧语
评论
共有 条评论