Changeset 2874


Ignore:
Timestamp:
01/20/10 11:48:45 (15 years ago)
Author:
Eric.Larour
Message:

Specify position option, by name of person.

Location:
issm/trunk/src/m/classes/public/plot
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/public/plot/applyoptions.m

    r2872 r2874  
    222222end
    223223
     224%position of figure
     225if exist(options,'position'),
     226       
     227        positionstring=getfieldvalue(options,'position');
     228        if strcmpi(positionstring,'larour'),
     229                set(gcf,'Position',[1604 4 1594 1177]);
     230        end
     231end
     232
     233
    224234%axes position
    225235if exist(options,'axesPosition')
  • issm/trunk/src/m/classes/public/plot/plotdoc.m

    r2827 r2874  
    117117disp('                  dresp2 is a structure array of responses (where we only need mu and sigma)');
    118118disp('                  hmin,hmax and hnint are the minimum, maximum and number of intervals of the histogram (optional)');
     119disp('       ''position'': position of figure. specify name of person for which position settings are hardcoded in applyoptions.m');
    119120disp('       any options (except ''data'') can be followed by ''#i'' where ''i'' is the subplot number, or ''#all'' if applied to all plots');
    120121disp('  ');
Note: See TracChangeset for help on using the changeset viewer.