coa.m
来自「阵列信号处理的工具箱」· M 代码 · 共 25 行
M
25 行
%COA Short form of "close all".%Close all figure windows except the windows from the GUWDAM program.%% * DBT, A Matlab Toolbox for Radar Signal Processing *% (c) FOA 1994-2000. See the file dbtright.m for copyright notice.% Start : 970725 Svante Bj鰎klund (svabj).% Latest change: $Date: 2000/10/16 15:20:08 $ $Author: svabj $.% $Revision: 1.4 $% *****************************************************************************gcfigures = get(0, 'children');for iifigure = gcfigures' userData = get(iifigure, 'UserData'); if (ischar(userData) & strcmp(userData,'guwdam')) % Do not close these windows. else close(iifigure) % Close all figure windows except the windows from the GUWDAM program. % This code is copied from the callback for 'menu_quit' in the file % "gucdam.m" and a small but important change is made (~). end%ifend%if
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?