lpc_ana.m
来自「the implement of the encoder and the dec」· M 代码 · 共 13 行
M
13 行
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 + =
减小字号Ctrl + -
显示快捷键?