busy.m
来自「MATLAB中读写、处理科学数据文件格式NETCDF的程序」· M 代码 · 共 17 行
M
17 行
function Busy(theFigure)
% Busy -- Set the watch-cursor.
% Busy(theFigure) sets the watch-cursor in theFigure.
% The companion routine is "Idle".
% Copyright (C) 1996 Dr. Charles R. Denham, ZYDECO.
% All Rights Reserved.
if ~any(findobj('Type', 'figure')), return, end
if nargin < 1
theFigure = gcf;
end
set(theFigure, 'Pointer', 'watch');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?