I am new to Matlab. I have added some noise to an Mp3 file:
[a, Fs] = audioread(\'test.mp3\'); y = a + 0.01* randn(size(a)); plot(y); sound(y,Fs);