Changeset 27291


Ignore:
Timestamp:
09/26/22 02:01:59 (3 years ago)
Author:
inwoo
Message:

CHG: fix minor - specify figure position for inwoo.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/plot/plotmodel.m

    r25065 r27291  
    1010
    1111%get number of subplots
    12 subplotwidth=ceil(sqrt(numberofplots));
     12subplotwidth=ceil(sqrt(options.numberofplots));
    1313
    1414%if nlines and ncols specified, then bypass.
     
    2424
    2525%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},'ncols')))
     26if ((exist(options.list{1},'ncols') & ~exist(options.list{1},'ncols')) | (~exist(options.list{1},'ncols') & exist(options.list{1},'nicols')))
    2727        error('plotmodel error message: nlines and ncols  need to be specified together, or not at all');
    28 end
    29 
    30 % Add option for subplot, only support one subplot per one plotmodel call
    31 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 width
    38     subplotwidth = ncols;
    39     % Turn off new figure option for subplot
    40     options.list{1}=addfield(options.list{1},'figurestatement','off');
    41     % Turn off clf option for subplot
    42     options.list{1}=addfield(options.list{1},'clf','off');
    4328end
    4429
     
    4732
    4833        %Create figure
    49         if (strcmpi(getfieldvalue(options.list{1},'figurestatement','on'),'on'))
     34        if strcmpi(getfieldvalue(options.list{1},'figurestatement','on'),'on'),
    5035                f=figure(figurenumber);
    5136        else
     
    10186                else
    10287                        set(gcf,'Position',figposition);
    103                 end
     88        end
     89   elseif strcmpi(getenv('USER'),'inwoo')
     90        set(gcf,'Position',[910 242 560 420]);
    10491        end % }}}
    10592
    106         %Use zbuffer renderer (smoother colors) and white background
     93        %Use zbuffer renderer (snoother colors) and white background
    10794        set(f,'Renderer','zbuffer','color',getfieldvalue(options.list{1},'figurebackgroundcolor','w'));
    10895
     
    11097        try,
    11198                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
    118101                        if getfieldvalue(options.list{i},'displayunused',1),
    119102                                displayunused(options.list{i})
     
    125108        end
    126109else
    127         error('plotmodel error message: no output data found.');
     110        error('plotmodel error message: no output data found. ');
    128111end
Note: See TracChangeset for help on using the changeset viewer.