📄 combine.m
字号:
function [splast,spwoutpre,spwout]=combine(sp,win_length,frmsize,i,splast,spwoutpre)
spwout=zeros(1,win_length);
if i==1
spwinpre=sp(1:win_length);
spwoutpre=sp(win_length+1:frmsize);
splast=spwinpre;
else
spwin=sp(1:win_length);
spwout=sp(win_length+1:frmsize);
spcombine=spwoutpre+spwin;
splast=[splast,spcombine];
spwinpre=spwin;
spwoutpre=spwout;
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -