资源简介
用小波变换对信号进行消噪重构。更多资料可以查看参考书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
相关资源
- 应用MATLAB实现探地雷达数据小波变换
- 基于小波变换的音频去噪
- 使用matlab实现的小波变换彩色图像水
- matlab图像处理小波变换m文件及部分注
- 基于小波变换的多尺度图像边缘检测
- 基于小波变换的图像数字水印MATLAB代
- 小波变换MATLAB代码
- matlab实现文件读写波形处理,小波变
- 小波变换 matlab程序
- matlab代码,小波变换实现图像去噪,
- SAR图像去噪matlab小波去噪、contourlet变
- matlab实现的小波变换彩色图像水印嵌
- 小波变换的压缩感知图像处理
- 小波变换实现微弱信号检测
- 检测ECG信号的R波
- 基于墨西哥草帽小波函数进行连续小
- 小波变换的水下图像目标检测
- 基于小波变换的数字水印算法
- matlab小波变换 边缘检测
- 基于小波变换的图像压缩(matlab)
- 利用提升框架实现小波变换的程序编
- 基于小波变换的matlab图像处理程序
- 构造B样条小波和基于小波变换模极大
- 复小波变换提取小波脊线
- 加州理工大学教授开发的经验小波变
- 验模态小波变换工具
- 一整套基于小波变换的的图像融合算
- 小波变换去除脉搏波基线漂移算法
- dwt_ihs_fusion 基于离散小波变换和IHS变
- DTCWT 适合进行图像压缩
评论
共有 条评论