📄 refresh.m
字号:
function refresh(h)
% REFRESH REFRESH causes the current figure window to be
% redrawn. REFRESH(h) causes the figure window specified
% by handle h to be redrawn.
% D. Thomas 5/26/93
% Copyright (c) 1984-93 by The MathWorks, Inc.
if nargin==1,
if strcmp(get(h,'type'),'figure'),
set(h,'color',get(h,'color'))
else,
disp('Handle does not refer to a figure object')
end
else,
set(gcf,'color',get(gcf,'color'))
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -