Changeset 12398
- Timestamp:
- 06/11/12 11:24:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/model/plot/colormaps/haxby.m
r12395 r12398 1 1 function map = haxby(m); 2 %HAXBY Haxby color map2 %HAXBY - Haxby color map 3 3 % HAXBY(M) returns an M-by-3 matrix containing a colormap with Haxby's 4 4 % colors, commonly used for displaying bathymetry data. 5 5 % HAXBY, by itself, is the same length as the current colormap. 6 %7 % For example, to reset the colormap of the current figure:8 %9 % colormap(haxby)10 %11 % Use12 % colormap(flipud(haxby))13 %14 % for bathymetry data (positive downward).15 6 % 16 7 % Colormap is based on the colors used by W. F. Haxby's Gravity … … 19 10 % the GMT color table used by MB-System by David W. Caress and Dale N. Chayes. 20 11 % <http://www.ldeo.columbia.edu/res/pi/MB-System> 21 %22 % See also HSV, GRAY, PINK, COOL, BONE, COPPER, FLAG, HOT23 % COLORMAP, RGBPLOT.24 25 % Kelsey Jordahl26 % Marymount Manhattan College27 % Time-stamp: <Fri Oct 30 12:45:12 EDT 2009>28 12 29 13 if nargin < 1, m = size(get(gcf,'colormap'),1); end 30 % mbm_grdplot Haxby color pallette 14 31 15 ncolors=11; 32 c=[ 37 57 175; 40 127 251; 50 190 255; 106 235 255; 33 138 236 174; 205 255 162; 240 236 121; 255 189 87; 34 255 161 68; 255 186 133; 255 255 255]; 16 c=[... 17 37 57 175 18 40 127 251 19 50 190 255 20 106 235 255 21 138 236 174 22 205 255 162 23 240 236 121 24 255 189 87 25 255 161 68 26 255 186 133 27 255 255 255]; 28 35 29 pp=1:(m-1)/(ncolors-1):m; 36 30 r=interp1(pp,c(:,1),1:m);
Note:
See TracChangeset
for help on using the changeset viewer.