lsfxlpi.m

来自「ITU-T G.723.1 Speech Coder: Matlab imple」· M 代码 · 共 17 行

M
17
字号
function aI = LSFxLPI (lsf, lsfP, LSFpar)% Interpolate the LSF vectors, convert to LP% $Id: LSFxLPI.m 1.1 2004/07/09 G.723.1-v2r1a $% Interpolate LSF'sN = length (LSFpar.IntC);for (i = 1:N)  a = LSFpar.IntC(i);  lsfI(:,i) = (1 - a) * lsfP + a * lsf;end% Convert to LP coefficientsaI = LSFxLP (lsfI, LSFpar);return

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?