📄 vtchg.m
字号:
% Function : change the voicetype classification for the GCI display using the mouse.
% vtchg will change the voicetype from voiced to unvoiced, or vice versa.
%
% vtchg.m is a call_function executed by "chg_vtp" on figure(Vtset_f).
%----------------------------------------%
% change the voicetype classification %
%----------------------------------------%
if vctyp1(cfram)==1
vctyp1(cfram)=0;
set(vt_text,'String','unvoiced');
else
vctyp1(cfram)=1;
set(vt_text,'String','voiced');
end
% the first and last frame must be unvoiced!!
if cfram==1
vctyp1(1)=0;
elseif cfram==nfram
vctyp1(nfram)=0;
end
% plot the changed voicetype
vt_plt;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -