Changeset 285


Ignore:
Timestamp:
05/07/09 07:21:09 (16 years ago)
Author:
Mathieu Morlighem
Message:

Improved expmaster (if no current figure)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/utils/Exp/expmaster.m

    r33 r285  
    6565
    6666%get current figure
    67 set(gcf,'Renderer','zbuffer'); %fixes a bug on Mac OS X (not needed in future Matlab version
    68 F=getframe(gca);
    69 F=F.cdata;
    70 %get current axis
    71 xlim=get(gca,'Xlim');
    72 ylim=get(gca,'Ylim');
    73 %recreate x_m and y_m
    74 x_m=linspace(xlim(1),xlim(2),size(F,2));
    75 y_m=linspace(ylim(2),ylim(1),size(F,1)); %getframe reverse axis...
    76 %plot the data in another figure
    77 figure
    78 imagesc(x_m,y_m,F); set(gca,'Ydir','normal');
     67if ~isempty(get(0,'children')),%if there is already a figure (return the number of opened figures)
     68        set(gcf,'Renderer','zbuffer'); %fixes a bug on Mac OS X (not needed in future Matlab version)
     69        F=getframe(gca);
     70        F=F.cdata;
     71        %get current axis
     72        xlim=get(gca,'Xlim');
     73        ylim=get(gca,'Ylim');
     74        %recreate x_m and y_m
     75        x_m=linspace(xlim(1),xlim(2),size(F,2));
     76        y_m=linspace(ylim(2),ylim(1),size(F,1)); %getframe reverse axis...
     77        %plot the data in another figure
     78        figure
     79        imagesc(x_m,y_m,F); set(gca,'Ydir','normal');
     80else
     81        figure
     82end
    7983
    8084%plot existing profile if any
     
    8589        for i=1:numprofiles
    8690                plot(A(i).x,A(i).y,'-r','MarkerSize',10);
    87                 prevplot2=prevplot2+1;
     91                max(A(i).x)
    8892        end
    8993end
Note: See TracChangeset for help on using the changeset viewer.