📄 busy.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -