My code is compiling and numerical values of all variables are appearing in command window .problem is that .wav file is not audible.i have applied simple filter still no change except values in command window.following is the code
Show older comments
PathOriginal = fullfile('C:\Users\Documents\MATLAB', 'AUD-20150716-WA0032.wav');
[y, Fs, n] = wavread(PathOriginal);
b=1;
a=0.1;
a=[1 -0.1];
x(n)=y(n)-0.1*y(n-1);
y=filter(b,a,x)
what command should i use to hear the sound before and after applying filter??
[EDITED, Jan, Code formatted]
1 Comment
Jan
on 22 Jul 2015
I do not see any connection to the tags "Matlab compiler" or "differential equations". Please use tags, which helps to identify the nature of the question.
Accepted Answer
More Answers (0)
Categories
Find more on Audio Processing Algorithm Design 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!