Filter löschen
Filter löschen

what is the matlab code to remove noise from the speech signal?

3 Ansichten (letzte 30 Tage)
Manjutha Manavalan
Manjutha Manavalan am 2 Feb. 2017
Bearbeitet: Walter Roberson am 4 Feb. 2017
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)');

Antworten (1)

Alexander Voznesensky
Alexander Voznesensky am 3 Feb. 2017
Hi! As far, as i know, there is no built-in functions. But, who knows. You can use wavelet transform for denoising.

Kategorien

Mehr zu Denoising and Compression finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by