fillscreen.m
来自「应用于MATLAB上的聚类方法」· M 代码 · 共 18 行
M
18 行
function fillscreen(hFig)% FILLSCREEN Set a figure size to completely fill the screen%% fillscreen sets the current figure size to completely fill the screen%% fillscreen(hFig) sets figure with handle hFig to completely fill the screen% Scott Hirsch% shirsch@mathworks.comif nargin==0 hFig = gcf;end;res=get(0,'ScreenSize');set(hFig,'Position',[1 1 res(3) res(4)-64]); %Leave room for title bar
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?