delfig.m
来自「matlab例程」· M 代码 · 共 6 行
M
6 行
% To rapidly delete figures
nw=input('How many figures to delete (default: all up to current figure):- ');
if isempty(nw);nw=gcf;end;
nw=round(nw); % to ensure integer input
for n=1:nw;delete(figure(n));end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?