nextfig.m

来自「matlab的steel金字塔小波分解源代码」· M 代码 · 共 20 行

M
20
字号
% nextFig (MAXFIGS, SKIP)% % Make figure number mod((GCF+SKIP), MAXFIGS) the current figure.% MAXFIGS is optional, and defaults to 2.% SKIP is optional, and defaults to 1.% Eero Simoncelli, 2/97.function nextFig(maxfigs, skip)if (exist('maxfigs') ~= 1)  maxfigs = 2;end  if (exist('skip') ~= 1)  skip = 1;end  figure(1+mod(gcf-1+skip,maxfigs));

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?