Changeset 14400
- Timestamp:
- 02/26/13 14:51:20 (12 years ago)
- Location:
- issm/trunk-jpl/src/m/plot
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/plot_manager.m
r13730 r14400 179 179 180 180 %standard plot: 181 subplot(nlines,ncols,i); 181 if exist(options,'asymsubplot') 182 id=getfieldvalue(options,'asymsubplot',i); 183 subplot(nlines,ncols,id); 184 else 185 subplot(nlines,ncols,i); 186 end 182 187 183 188 %plot unit -
issm/trunk-jpl/src/m/plot/subplotmodel.m
r13730 r14400 7 7 %Regular subplot 8 8 if ~exist(options,'tightsubplot') 9 subplot(nlines,ncols,num); 10 return; 9 if exist(options,'asymsubplot') 10 id=getfieldvalue(options,'asymsubplot',num); 11 subplot(nlines,ncols,id); 12 return 13 else 14 subplot(nlines,ncols,num); 15 return; 16 end 11 17 end 12 18
Note:
See TracChangeset
for help on using the changeset viewer.