?? newfig.m
字號:
%NEWFIG Create new figure on given position%% NEWFIG(FIGURE_NUMBER,FIGURE_PER_ROW)%% INPUT% FIGURE_NUMBER Number of the figure% FIGURE_PER_ROW Figures per row (default: 4)%% OUTPUT%% DESCRIPTION% Creates figure number FIGURE_NUMBER and places it on the screen,% such that (when sufficient figures are created), the screen is% covered by an array of figures, with FIGURE_PER_ROW figures per row.%% SEE ALSO% SCATTERD, PLOTC% $Id: newfig.m,v 1.4 2003/10/20 22:28:53 bob Exp $function newfig(fign,n); if nargin < 2, n=4; end if nargin < 1, fign=gcf+1; end % if the figure already exist, kill it! if any(get(0,'children') == fign) delete(fign); end % Create the figure, figure(fign); set(gcf,'menubar','none'); % and place it in the correct position: ny = 1-ceil(fign/n)/n; nx = (fign -1 - n*floor((fign-1)/n))/n; d = 1/n; set(gcf,'units','normalized','position',[nx ny d*0.95 d*0.85]);return
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -