I tried to add noise with randn function but its not filtered by butter filter. How to add high frequency noise in a .wav audio so that I can filter it with butterworth filter?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
%Butterworth filter design
n=10;
wn=0.4;
[a b]=butter(n,wn,'low');
%Reading Audio Signal
[Data,fs,nbits] = wavread('sound');
Data=Data(:,1)';
NoiseData=Data+.005*randn(size(Data));
wavplay(NoiseData,fs)
DataOut=filter(a,b,NoiseData);
0 Commenti
Risposte (0)
Vedere anche
Categorie
Scopri di più su Audio Processing Algorithm Design in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!