w5_ok.m

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

M
36
字号
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%	w5_ok.m
%
%	jmw
%	6/8/94
%
%	User_specified Mapping Window:
%	close all applicable windows ... (a possibility of three)
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% save window size and position

w5_saved_position = get(w5_h,'Position');
w5_display_saved_position = get(w5_display_h,'Position');

% close windows

close(w5_h);		% close window
w5_h = [];		% reset handle to window

close(w5_display_h);	% close window
w5_display_h = [];	% reset handle to window

if (~isempty(w5_edit_h))
	w5_edit_saved_position = get(w5_edit_h,'Position');
	close(w5_edit_h);	% close window
end;
w5_edit_h = [];		% reset handle to window

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

clear  tmp_frm tmp_map tmp_master_map tmp_range x MAPINDEX

⌨️ 快捷键说明

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