谁有关于语音增强的MATLAB的程序?

日期:2021-07-12 20:01:25 人气:1

谁有关于语音增强的MATLAB的程序?

%在噪声环境下语音信号的增强
%语音信号为读入的声音文件
%噪声为正态随机噪声
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)
    A+
热门评论