小波去噪matlab程序.docx
《小波去噪matlab程序.docx》由会员分享,可在线阅读,更多相关《小波去噪matlab程序.docx(3页珍藏版)》请在三一办公上搜索。
1、小波去噪matlab程序转帖小波去噪matlab程序 * clear clc %在噪声环境下语音信号的增强 %语音信号为读入的声音文件 %噪声为正态随机噪声 sound=wavread(c12345.wav); count1=length(sound); noise=0.05*randn(1,count1); for i=1:count1 signal(i)=sound(i); end for i=1:count1 y(i)=signal(i)+noise(i); end %在小波基db3下进行一维离散小波变换 coefs1,coefs2=dwt(y,db3); %低频 高频 count2=l
2、ength(coefs1); count3=length(coefs2); energy1=sum(abs(coefs1).2); energy2=sum(abs(coefs2).2); energy3=energy1+energy2; for i=1:count2 recoefs1(i)=coefs1(i)/energy3; end for i=1:count3 recoefs2(i)=coefs2(i)/energy3; end %低频系数进行语音信号清浊音的判别 zhen=160; count4=fix(count2/zhen); for i=1:count4 n=160*(i-1)+1
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 小波去噪 matlab 程序
链接地址:https://www.31ppt.com/p-3475027.html