Changeset 2704
- Timestamp:
- 12/07/09 11:21:31 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/public/plot/plot_section.m
r2673 r2704 80 80 subplot(width,width,index1) 81 81 if isquiver 82 [AX,H1,H2]=plotyy(s,data_s1,s,data_s2,'plot'); 83 if exist(options,'Ylabel'), 84 Ylabel=getfieldvalue(options,'Ylabel'); 85 if iscell(Ylabel) & length(Ylabel)==2, 86 set(get(AX(1),'Ylabel'),'String',Ylabel{1}); 87 set(get(AX(2),'Ylabel'),'String',Ylabel{2}); 88 options=removefield(options,'Ylabel',0); 89 end 90 end 82 plot(s,data_s1,s,data_s2); 91 83 else 92 84 plot(s,data_s)
Note:
See TracChangeset
for help on using the changeset viewer.