~ubuntu-branches/debian/sid/octave3.0/sid

« back to all changes in this revision

Viewing changes to scripts/image/ocean.m

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2007-12-23 16:04:15 UTC
  • Revision ID: james.westby@ubuntu.com-20071223160415-n4gk468dihy22e9v
Tags: upstream-3.0.0
ImportĀ upstreamĀ versionĀ 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2002, 2005, 2006,
 
2
##               2007 John W. Eaton
 
3
##
 
4
## This file is part of Octave.
 
5
##
 
6
## Octave is free software; you can redistribute it and/or modify it
 
7
## under the terms of the GNU General Public License as published by
 
8
## the Free Software Foundation; either version 3 of the License, or (at
 
9
## your option) any later version.
 
10
##
 
11
## Octave is distributed in the hope that it will be useful, but
 
12
## WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
## General Public License for more details.
 
15
##
 
16
## You should have received a copy of the GNU General Public License
 
17
## along with Octave; see the file COPYING.  If not, see
 
18
## <http://www.gnu.org/licenses/>.
 
19
 
 
20
## -*- texinfo -*-
 
21
## @deftypefn {Function File} {} ocean (@var{n})
 
22
## Create color colormap.  The argument @var{n} should be a scalar.  If it
 
23
## is omitted, the length of the current colormap or 64 is assumed.
 
24
## @end deftypefn
 
25
 
 
26
## Author: Tony Richardson <arichard@stark.cc.oh.us>
 
27
## Created: July 1994
 
28
## Adapted-By: jwe
 
29
 
 
30
function map = ocean (number)
 
31
 
 
32
  if (nargin == 0)
 
33
    number = rows (colormap);
 
34
  elseif (nargin == 1)
 
35
    if (! isscalar (number))
 
36
      error ("ocean: argument must be a scalar");
 
37
    endif
 
38
  else
 
39
    print_usage ();
 
40
  endif
 
41
 
 
42
  cutin = fix (number/3);
 
43
 
 
44
  dr = (number - 1) / cutin;
 
45
 
 
46
  r = prepad ([0:dr:(number-1)], number)';
 
47
 
 
48
  dg = (number - 1) / (2 * cutin);
 
49
 
 
50
  g = prepad([0:dg:(number-1)], number)';
 
51
 
 
52
  b = [0:(number-1)]';
 
53
 
 
54
  map = [ r, g, b ] / (number - 1);
 
55
 
 
56
endfunction