?? lpc_ana.m
字號:
function lpc_coef=lpc_ana(curr,gamma2,fm_count)
global frames olpc lpcMat
hfrm=curr.*hamming(frames)'; % Hamming windowed frames
lpc_coef = lpc(hfrm,olpc); % Call Matlab command 'lpc' to get LPC coefficients
lpc_coef = wcoff( gamma2, real(lpc_coef) ); % Weight the resultant LPC coefficients with 0.99413
lpcMat(fm_count,:)=lpc_coef; % Store LPC coefficients
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -