twomass_quit.m

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

M
31
字号
%
% Callback function for Cancel button of twomass model  window
% Author : Karthik
% Date : May 27 1997 

if exist('twomass_con_window')
   eval('close(twomass_con_window);',catch1);
   clear twomass_con_window;
end;

if exist('twomass_output_window_1')
   eval('close(twomass_output_window_1);',catch1);
   clear twomass_output_window_1;
end;


if exist('twomass_output_window_2')
   eval('close(twomass_output_window_2);',catch1);
clear twomass_output_window_2;
end;

if exist('twomass_output_window_3')
   eval('close(twomass_output_window_3);',catch1);
clear twomass_output_window_3;
end;

if exist('anim_display_window')
   eval('close(anim_display_window);',catch1);
   clear anim_display_window;
end;

⌨️ 快捷键说明

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