rybcolormap.m.html CLAWPACK  
 Source file:   rybcolormap.m
 Directory:   /home/rjl/git/rjleveque/clawpack-4.x/matlab
 Converted:   Sun May 15 2011 at 19:15:58   using clawcode2html
 This documentation file will not reflect any later changes in the source file.

 
%
% red-yellow--blue color map 
%
c01 = 0:.1:1;
c10 = 1:-.1:0;
c0 = 0*c01;
c1 = 1 + c0;
mymap = [c1' c0' c0'; c1' c01' c0'; c10' c10' c01';   c0' c0' c1'];
colormap(mymap)