필터 지우기
필터 지우기

frame blocking in matlab

조회 수: 3 (최근 30일)
lam
lam 2014년 1월 15일
댓글: Walter Roberson 2022년 5월 26일
i am new in using matlab. i am going to do a speak recognition, but i have a problem, which is how can i do the frame blocking? do i need the code? or just use the function in matlab? thank you

답변 (1개)

声铭 张
声铭 张 2022년 5월 26일
function gmmfeatures(voice,N,deltaN,fs,Q)
N=256; %number of frames
M=156; %number of overlapping frame
a(1:256,1:82)=0;a(:,1)= voice (1:256,1);
for j=2:82
a(:,j)= voice ((N-M)*j+1:(N-M)*j+N,1);
end
figure(3);
plot(a(:));
title('Frame blocking of the Voice Signal');
end
this function shows the frame blocking
  댓글 수: 1
Walter Roberson
Walter Roberson 2022년 5월 26일
Or perhaps use buffer()

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Speech Recognition에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by