Changeset 26399
- Timestamp:
- 08/18/21 08:34:32 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/subplotmodel.m
r25627 r26399 4 4 % Usage: 5 5 % h=subplotmodel(nlines,ncols,i,options) 6 7 box=getfieldvalue(options,'box','off'); 8 if strcmpi(box,'on'), 9 visible='on'; 10 else 11 visible='off'; 12 end 13 14 %Do we specify axes? 15 if 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 21 end 6 22 7 23 %Regular subplot … … 25 41 ymin = 1-vmargin(2)-height; 26 42 27 box=getfieldvalue(options,'box','off');28 if strcmpi(box,'on'),29 visible='on';30 else31 visible='off';32 end33 34 43 for i = 1:nlines 35 44 xmin = hmargin(1);
Note:
See TracChangeset
for help on using the changeset viewer.