资源简介
小波软阈值的去噪的

代码片段和文件信息
% Set sampling period and wavelet name.
delta = 0.1; wname = ‘coif3‘;
% Set scales.
amax = 7;
a = 2.^[1:amax];
% Compute associated pseudo-frequencies.
f = scal2frq(awnamedelta);
% Compute associated pseudo-periods.
per = 1./f;
% Plot pseudo-periods versus scales.
subplot(211) plot(aper)
title([‘Wavelet: ‘wname ‘ Sampling period: ‘num2str(delta)])
xlabel(‘Scale‘)
ylabel(‘Computed pseudo-period‘)
% For each scale 2^i:
% - generate a sine function of period per(i);
% - perform a wavelet decomposition;
% - identify the highest energy level;
% - compute the detected pseudo-period.
for i = 1:amax
% Generate sine function of period
% per(i) at sampling period delta.
t = 0:delta:100;
x = sin((t.*2*pi)/per(i));
% Decompose x at level 9.
[cl] = wavedec(x9wname);
% Estimate standard deviation of detail coefficients.
stdc = wnoisest(cl[1:amax]);
% Compute identified period.
[yjmax] = max(stdc);
idper(i) = per(jmax);
end
% Compare the detected and computed pseudo-periods.
subplot(212) plot(peridper‘o‘perper)
title(‘Detected vs computed pseudo-period‘)
xlabel(‘Computed pseudo-period‘)
ylabel(‘Detected pseudo-period‘)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 229410 2008-12-11 21:13 小波软阈值的去噪处理代码\lena.bmp
文件 261 2015-12-15 23:43 小波软阈值的去噪处理代码\psnr.mat
文件 195 2015-12-15 23:43 小波软阈值的去噪处理代码\psnr_noise_remove.mat
文件 359 2006-04-07 17:57 小波软阈值的去噪处理代码\README.txt
文件 1240 2010-05-18 21:24 小波软阈值的去噪处理代码\Unti
文件 219 2010-05-18 21:27 小波软阈值的去噪处理代码\Unti
文件 11192 2005-08-25 16:47 小波软阈值的去噪处理代码\wavlet.fig
文件 6724 2005-08-25 16:47 小波软阈值的去噪处理代码\wavlet.m
文件 6783 2010-05-19 11:46 小波软阈值的去噪处理代码\wavlet1.m
文件 6790 2010-05-19 11:36 小波软阈值的去噪处理代码\wavletbuild.m
文件 38517 2006-04-07 17:58 小波软阈值的去噪处理代码\运行抓图.jpg
目录 0 2010-05-19 11:46 小波软阈值的去噪处理代码
----------- --------- ---------- ----- ----
301690 12
相关资源
- 读取txt文件内容matlab代码实现
- 细胞图像分割matlab代码
- 基于MP的时频分析MATLAB代码
- WCDMA matlab代码
- 图像降噪Matlab代码
- 圣诞树(matlab代码)
- 心音信号处理分析(附matlab代码)
- Pattern Recognition and Machine Learning(高清
- 均值滤波和FFT频谱分析Matlab代码
- 欧拉放大论文及matlab代码
- GPS信号的码捕获matlab代码.7z
- matlab读取SP3文件
- 图像的饱和度,亮度,色调的matlab代
- 肤色检测matlab代码
- sutton强化学习随书MATLAB代码
- 压缩鬼成像matlab代码
- 压缩感知(Compressed Sensing CS)matlab代
- 基于OFDMA系统的多用户资源分配算法,
- Allan方差分析MATLAB代码,含MPU6050八小
- 均匀球体剖面重力异常正演模拟Matl
- 印章识别matlab代码
- 连续潮流matlab代码
- 线性拟合仿真-最小二乘法、正交回归
- 矩阵填充MATLAB代码
- 大型飞机航拍图处理matlab代码
- LMS语音信号去噪matlab代码
- 卡尔曼滤波MATLAB代码170027
- Matlab代码编写的semi-supervised CCA 程序
- EOF分析matlab代码
- 尾灯识别matlab代码
评论
共有 条评论