Changeset 12398


Ignore:
Timestamp:
06/11/12 11:24:17 (13 years ago)
Author:
Mathieu Morlighem
Message:

minor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/model/plot/colormaps/haxby.m

    r12395 r12398  
    11function map = haxby(m);
    2 %HAXBY Haxby color map
     2%HAXBY - Haxby color map
    33%   HAXBY(M) returns an M-by-3 matrix containing a colormap with Haxby's
    44%   colors, commonly used for displaying bathymetry data.
    55%   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 %   Use
    12 %             colormap(flipud(haxby))
    13 %
    14 %   for bathymetry data (positive downward).
    156%
    167%   Colormap is based on the colors used by W. F. Haxby's Gravity
     
    1910%   the GMT color table used by MB-System by David W. Caress and Dale N. Chayes.
    2011%   <http://www.ldeo.columbia.edu/res/pi/MB-System>
    21 %
    22 %   See also HSV, GRAY, PINK, COOL, BONE, COPPER, FLAG, HOT
    23 %   COLORMAP, RGBPLOT.
    24 
    25 % Kelsey Jordahl
    26 % Marymount Manhattan College
    27 % Time-stamp: <Fri Oct 30 12:45:12 EDT 2009>
    2812
    2913if nargin < 1, m = size(get(gcf,'colormap'),1); end
    30 % mbm_grdplot Haxby color pallette
     14
    3115ncolors=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];
     16c=[...
     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
    3529pp=1:(m-1)/(ncolors-1):m;
    3630r=interp1(pp,c(:,1),1:m);
Note: See TracChangeset for help on using the changeset viewer.