Index: /issm/trunk-jpl/src/m/model/plot/colormaps/haxby.m
===================================================================
--- /issm/trunk-jpl/src/m/model/plot/colormaps/haxby.m	(revision 12397)
+++ /issm/trunk-jpl/src/m/model/plot/colormaps/haxby.m	(revision 12398)
@@ -1,16 +1,7 @@
 function map = haxby(m);
-%HAXBY  Haxby color map
+%HAXBY - Haxby color map
 %   HAXBY(M) returns an M-by-3 matrix containing a colormap with Haxby's
 %   colors, commonly used for displaying bathymetry data.
 %   HAXBY, by itself, is the same length as the current colormap.
-%
-%   For example, to reset the colormap of the current figure:
-%
-%             colormap(haxby)
-%
-%   Use
-%             colormap(flipud(haxby))
-%
-%   for bathymetry data (positive downward).
 %
 %   Colormap is based on the colors used by W. F. Haxby's Gravity
@@ -19,18 +10,21 @@
 %   the GMT color table used by MB-System by David W. Caress and Dale N. Chayes.
 %   <http://www.ldeo.columbia.edu/res/pi/MB-System>
-%
-%   See also HSV, GRAY, PINK, COOL, BONE, COPPER, FLAG, HOT
-%   COLORMAP, RGBPLOT.
-
-% Kelsey Jordahl
-% Marymount Manhattan College
-% Time-stamp: <Fri Oct 30 12:45:12 EDT 2009>
 
 if nargin < 1, m = size(get(gcf,'colormap'),1); end
-% mbm_grdplot Haxby color pallette
+
 ncolors=11;
-c=[ 37    57   175;    40   127   251;    50   190   255;   106   235   255;
-138   236   174;   205   255   162;   240   236   121;   255   189    87;
-255   161    68;   255   186   133;   255   255   255];
+c=[...
+	37     57   175
+	40    127   251
+	50    190   255
+	106   235   255
+	138   236   174
+	205   255   162
+	240   236   121
+	255   189    87
+	255   161    68
+	255   186   133
+	255   255   255];
+
 pp=1:(m-1)/(ncolors-1):m;
 r=interp1(pp,c(:,1),1:m);
