Changeset 26399


Ignore:
Timestamp:
08/18/21 08:34:32 (4 years ago)
Author:
Mathieu Morlighem
Message:

CHG: added axes option

File:
1 edited

Legend:

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

    r25627 r26399  
    44%   Usage:
    55%      h=subplotmodel(nlines,ncols,i,options)
     6
     7box=getfieldvalue(options,'box','off');
     8if strcmpi(box,'on'),
     9        visible='on';
     10else
     11        visible='off';
     12end
     13
     14%Do we specify axes?
     15if exist(options,'axes')
     16        ax = getfieldvalue(options,'axes');
     17        ha = axes('Units','normalized', ...
     18                'Position',ax,'XTickLabel','','YTickLabel','',...
     19                'Visible',visible,'box',box);
     20        return
     21end
    622
    723%Regular subplot
     
    2541ymin   = 1-vmargin(2)-height;
    2642
    27 box=getfieldvalue(options,'box','off');
    28 if strcmpi(box,'on'),
    29         visible='on';
    30 else
    31         visible='off';
    32 end
    33 
    3443for i = 1:nlines
    3544        xmin = hmargin(1);
Note: See TracChangeset for help on using the changeset viewer.