?? interpol.m
字號:
% interpol.m
% area or articulatory vector interpolated by linear or arctan function
% interpolation(timex, vtf1, vtfo, vtf2)
% if (Interpolation == 0 && !animateflag) % linear area
d1 = (timeproc - tartime(vfno)) / (tartime(vfno+1) - tartime(vfno));
nt1atemp = nt1a(vfno) + (nt1a(vfno+1) - nt1a(vfno)) * d1;
for k=1:NING,
areatemp(k) = area(vfno,k) + (area(vfno+1,k) - area(vfno,k)) * d1;
lengtemp(k) = leng(vfno,k) + (leng(vfno+1,k) - leng(vfno,k)) * d1;
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -