Changeset 27291
- Timestamp:
- 09/26/22 02:01:59 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/plotmodel.m
r25065 r27291 10 10 11 11 %get number of subplots 12 subplotwidth=ceil(sqrt( numberofplots));12 subplotwidth=ceil(sqrt(options.numberofplots)); 13 13 14 14 %if nlines and ncols specified, then bypass. … … 24 24 25 25 %check that nlines and ncols were given at the same time! 26 if ((exist(options.list{1},'ncols') & ~exist(options.list{1},'ncols')) | (~exist(options.list{1},'ncols') & exist(options.list{1},'n cols')))26 if ((exist(options.list{1},'ncols') & ~exist(options.list{1},'ncols')) | (~exist(options.list{1},'ncols') & exist(options.list{1},'nicols'))) 27 27 error('plotmodel error message: nlines and ncols need to be specified together, or not at all'); 28 end29 30 % Add option for subplot, only support one subplot per one plotmodel call31 subindex = 0;32 if (exist(options.list{1},'subplot'))33 subops = getfieldvalue(options.list{1},'subplot',NaN);34 nlines = subops(1);35 ncols = subops(2);36 subindex = subops(3);37 % change the width38 subplotwidth = ncols;39 % Turn off new figure option for subplot40 options.list{1}=addfield(options.list{1},'figurestatement','off');41 % Turn off clf option for subplot42 options.list{1}=addfield(options.list{1},'clf','off');43 28 end 44 29 … … 47 32 48 33 %Create figure 49 if (strcmpi(getfieldvalue(options.list{1},'figurestatement','on'),'on'))34 if strcmpi(getfieldvalue(options.list{1},'figurestatement','on'),'on'), 50 35 f=figure(figurenumber); 51 36 else … … 101 86 else 102 87 set(gcf,'Position',figposition); 103 end 88 end 89 elseif strcmpi(getenv('USER'),'inwoo') 90 set(gcf,'Position',[910 242 560 420]); 104 91 end % }}} 105 92 106 %Use zbuffer renderer (s moother colors) and white background93 %Use zbuffer renderer (snoother colors) and white background 107 94 set(f,'Renderer','zbuffer','color',getfieldvalue(options.list{1},'figurebackgroundcolor','w')); 108 95 … … 110 97 try, 111 98 for i=1:numberofplots, 112 if subindex 113 plot_manager(getfieldvalue(options.list{i},'model',md),options.list{i},subplotwidth,nlines,ncols,subindex); 114 else 115 plot_manager(getfieldvalue(options.list{i},'model',md),options.list{i},subplotwidth,nlines,ncols,i); 116 end 117 %List all unused options 99 plot_manager(getfieldvalue(options.list{i},'model',md),options.list{i},subplotwidth,nlines,ncols,i); 100 %List all unused options 118 101 if getfieldvalue(options.list{i},'displayunused',1), 119 102 displayunused(options.list{i}) … … 125 108 end 126 109 else 127 error('plotmodel error message: no output data found. ');110 error('plotmodel error message: no output data found. '); 128 111 end
Note:
See TracChangeset
for help on using the changeset viewer.