residu.m

来自「g729音频编解码」· M 代码 · 共 11 行

M
11
字号
function exc=residu(a,x)
%Compute the LPC residual  by filtering the input speech through A(z)
%a,x---prediction coefficients ,speech (values x[-m..-1] are needed
%exc---residual signal


exc=filter(a,1,x);
exc=exc(11:end);


⌨️ 快捷键说明

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