Changeset 28227
- Timestamp:
- 04/17/24 16:43:39 (12 months ago)
- Location:
- issm/trunk-jpl/src/m/plot
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/applyoptions.m
r26314 r28227 139 139 if exist(options,'wrapping'), 140 140 if ~exist(options,'colormap'), 141 h= jet;141 h=turbo(); 142 142 end 143 143 colormap(repmat(h,getfieldvalue(options,'wrapping',1),1)); -
issm/trunk-jpl/src/m/plot/colormaps/getcolormap.m
r20968 r28227 5 5 % map = getcolormap(options) 6 6 7 %default is jet7 %default is turbo 8 8 if ~exist(options,'colormap'), 9 map = jet;9 map = turbo(); 10 10 return 11 11 end -
issm/trunk-jpl/src/m/plot/plot_quiver3.m
r13009 r28227 51 51 c=[0 0 1;1 1 0;1 0 0]; 52 52 else 53 % let jet choose54 c=colormap( jet(numcolors));53 %use turbo 54 c=colormap(turbo(numcolors)); 55 55 end 56 56 -
issm/trunk-jpl/src/m/plot/plot_scatter.m
r28098 r28227 62 62 ylim = h.Limits; 63 63 end 64 palette= jet();%colormap();64 palette=turbo();%colormap(); 65 65 numcolors=size(palette,1); 66 66 levels=round_ice(linspace(ylim(1),ylim(2),numcolors+1),2); -
issm/trunk-jpl/src/m/plot/quiver_process.m
r13009 r28227 66 66 palette=colormap([0 0 1;1 1 0;1 0 0]); 67 67 else 68 % let jet choose69 palette=colormap( jet(numcolors));68 %use turbo 69 palette=colormap(turbo(numcolors)); 70 70 end
Note:
See TracChangeset
for help on using the changeset viewer.