?? subplot3.m
字號:
function fignum = subplot3(nrows, ncols, fignumBase, plotnumBase)
% function subplot3(nrows, ncols, fignumBase, plotnumBase)
% Choose a subplot number, opening a new figure if necessary
% eg nrows=2, ncols = 2, we plot on (fignum, plotnum) = (1,1), (1,2), (1,3), (1,4), (2,1), ...
nplotsPerFig = nrows*ncols;
fignum = fignumBase + div(plotnumBase-1, nplotsPerFig);
plotnum = wrap(plotnumBase, nplotsPerFig);
figure(fignum);
if plotnum==1, clf; end
subplot(nrows, ncols, plotnum);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -