I am new at MATLAB, help me understand this
I googled a lot but I couldn't find a correct answer
Any links will also be helpful
[x, fs] = wavread('bee.wav');
This returns the audio files sampling rate inx
x = x(1000:1480);
What does this do?
I know
x(:)
makes a column vector, butx(a:b);
does it make anm * n
matrix ann * m
?