home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts / image / colormap.m < prev    next >
Text File  |  1997-11-19  |  2KB  |  62 lines

  1. ## Copyright (C) 1996 John W. Eaton
  2. ##
  3. ## This file is part of Octave.
  4. ##
  5. ## Octave is free software; you can redistribute it and/or modify it
  6. ## under the terms of the GNU General Public License as published by
  7. ## the Free Software Foundation; either version 2, or (at your option)
  8. ## any later version.
  9. ##
  10. ## Octave is distributed in the hope that it will be useful, but
  11. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. ## General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with Octave; see the file COPYING.  If not, write to the Free
  17. ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  18. ## 02111-1307, USA.
  19.  
  20. ## Set the current colormap.
  21. ##
  22. ## colormap (map) sets the current colormap to map.  map should be an n
  23. ## row by 3 column matrix. The columns contain red, green, and blue
  24. ## intensities respectively.  All entries should be between 0 and 1
  25. ## inclusive. The new colormap is returned.
  26. ##
  27. ## colormap ("default") restores the default colormap (a gray scale
  28. ## colormap with 64 entries). The default colormap is returned.
  29. ##
  30. ## colormap with no arguments returns the current colormap.
  31.  
  32. ## Author: Tony Richardson <amr@mpl.ucsd.edu>
  33. ## Created: July 1994
  34. ## Adapted-By: jwe
  35.  
  36. function cmap = colormap (map)
  37.  
  38.   global __current_color_map__ = gray ();
  39.  
  40.   if (nargin > 1)
  41.     usage ("colormap (map)");
  42.   endif
  43.  
  44.   if (nargin == 1)
  45.     if (isstr (map))
  46.       if (strcmp (map, "default"))
  47.         __current_color_map__ = gray ();
  48.       else
  49.         error ("invalid argument");
  50.       endif
  51.     else
  52.       ## Set the new color map
  53.       __current_color_map__ = map;
  54.     endif
  55.   endif
  56.  
  57.   ## Return current color map.
  58.  
  59.   cmap = __current_color_map__;
  60.  
  61. endfunction
  62.