Changeset 27402
- Timestamp:
- 11/21/22 07:50:52 (2 years ago)
- Location:
- issm/trunk-jpl/src/m/plot
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/plot_gridded.m
r27356 r27402 14 14 if islevelset 15 15 levelset = getfieldvalue(options,'levelset'); 16 options2 = options;16 options2 = copy(options); 17 17 options2.removefield('caxis',false); 18 18 options2.removefield('log',false); 19 [levelset datatype]=processdata(md,levelset,options );19 [levelset datatype]=processdata(md,levelset,options2); 20 20 end 21 21 -
issm/trunk-jpl/src/m/plot/plot_overlay.m
r25797 r27402 172 172 options=addfielddefault(options,'axis','equal off'); % default axis 173 173 applyoptions(md,data,options); 174 drawnow174 %drawnow -
issm/trunk-jpl/src/m/plot/plot_scatter.m
r24628 r27402 62 62 ylim = h.Limits; 63 63 end 64 palette= colormap();64 palette=jet();%colormap(); 65 65 numcolors=size(palette,1); 66 66 levels=round_ice(linspace(ylim(1),ylim(2),numcolors+1),2); … … 107 107 end 108 108 109 %Stop MATLAB's default interactivity 110 disableDefaultInteractivity(gca); 111 109 112 if ~alreadyplot, 110 113 % format the colorbar
Note:
See TracChangeset
for help on using the changeset viewer.