📄 gpf.m
字号:
function h = gpf()
%GPF Get handle of the figure that is next to the top of the stack.
% H = GPF returns the next-to-the-top figure (penultimate
% figure) in the root's figure stack.
%
% If there is only one figure open, GPF will return its
% handle. If there are currently no figures open, GPF will
% will open a figure and return its handle.
% Copyright (c) 1984-94 by the MathWorks, Inc.
hList = get(0,'Children');
if length(hList) > 1,
h = hList(2);
else
h=gcf;
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -