⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lpcr.m

📁 the implement of the encoder and the decoder of the CELP
💻 M
字号:
function [voc,buf]=lpcr(lpcc,buf,sube)

global frames olpc szsubf

lpcd=lpcc(2:olpc+1);                        % Cut off 1 in the coefficient.

voc=buf;

for j=1:szsubf
    voc(j+olpc)=-sum(voc(j:j+olpc-1).*lpcd(olpc:-1:1))+sube(j);
end

voc=voc(olpc+1:szsubf+olpc);
buf=voc(szsubf-olpc+1:szsubf);

⌨️ 快捷键说明

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