what is the matlab code to remove noise from the speech signal?
1 次查看(过去 30 天)
显示 更早的评论
clc;
clear all;
close all;
fileName='1.wav';
[x, fs] = wavread(fileName);
N = length(x);
t=(0:length(x)-1)/fs;
% Original Speech
figure(1);
set(gca, 'FontName', 'Times New Roman', 'FontSize', 10);
plot(t,x);
title('Original Speech');
xlabel('Time(s)');
ylabel('Amplitude(dB)');
0 个评论
回答(1 个)
Alexander Voznesensky
2017-2-3
Hi! As far, as i know, there is no built-in functions. But, who knows. You can use wavelet transform for denoising.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Simulation, Tuning, and Visualization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!