Ax's
Newbie level 3
Hi all,..
i want to create a speech recognition program that use MFCC. I have a problem to plot the frame blocking result. I use MATLAB. this is the coding i use to frame blocking.
m=100;
n=256;
l = length('waka.wav');
nbFrame = floor(((l - n) / m) + 1);
for i = 1:n
for j = 1:nbFrame
M(i, j) = s(((j - 1) * m) + i);
please help me to plot and view the frame blocking result in MATLAB.
thank you..
i want to create a speech recognition program that use MFCC. I have a problem to plot the frame blocking result. I use MATLAB. this is the coding i use to frame blocking.
m=100;
n=256;
l = length('waka.wav');
nbFrame = floor(((l - n) / m) + 1);
for i = 1:n
for j = 1:nbFrame
M(i, j) = s(((j - 1) * m) + i);
please help me to plot and view the frame blocking result in MATLAB.
thank you..