How to remove white Gaussian noise from an audio .wav file ?
Show older comments
if true
% code
end
[y,Fs] = audioread('siren1.wav');
% sound(y,Fs);
out=awgn(y,Fs);
sound(out)
i used white gaussian noise to an audio file but i need to remove it so need your help Thanks
Answers (1)
Abhishek Ballaney
on 9 Apr 2018
0 votes
Use some filters to remove noise
Categories
Find more on Simulation, Tuning, and Visualization in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!