lftset.m

来自「这是一个用于语音信号处理的工具箱」· M 代码 · 共 27 行

M
27
字号
% Function : increase or decrease the gain pertuurbation by clicking the mouse.
%
%    lftset.m is a call_function executed by "ta_slder" on figure(Gwset_f).

 %---------------------------------% 
 % change the LF timing parameters %
 %---------------------------------%

if stflag==1
   Tp=get(tp_slider,'Value');
   set(tp_val,'String',num2str(Tp));
elseif stflag==2
   Te=get(te_slider,'Value');
   set(te_val,'String',num2str(Te));
elseif stflag==3
   Ta=get(ta_slider,'Value');
   set(ta_val,'String',num2str(Ta));
elseif stflag==4
   Tc=get(tc_slider,'Value');
   set(tc_val,'String',num2str(Tc));
elseif stflag==5
   Ee=get(ee_slider,'Value')*1000;
   set(ee_val,'String',num2str(Ee/1000));
end

gwplt;

⌨️ 快捷键说明

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