📄 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 + -