Changeset 285
- Timestamp:
- 05/07/09 07:21:09 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/utils/Exp/expmaster.m
r33 r285 65 65 66 66 %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'); 67 if ~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'); 80 else 81 figure 82 end 79 83 80 84 %plot existing profile if any … … 85 89 for i=1:numprofiles 86 90 plot(A(i).x,A(i).y,'-r','MarkerSize',10); 87 prevplot2=prevplot2+1;91 max(A(i).x) 88 92 end 89 93 end
Note:
See TracChangeset
for help on using the changeset viewer.