Changeset 2704


Ignore:
Timestamp:
12/07/09 11:21:31 (15 years ago)
Author:
Mathieu Morlighem
Message:

minor for Helene (no more plotyy)

File:
1 edited

Legend:

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

    r2673 r2704  
    8080        subplot(width,width,index1)
    8181        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);
    9183        else
    9284                plot(s,data_s)
Note: See TracChangeset for help on using the changeset viewer.