1## Copyright (C) 1999, 2000, 2007, 2009 Kai Habel
3## This file is part of Octave.
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 3 of the License, or (at
8## your option) any later version.
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.
15## You should have received a copy of the GNU General Public License
16## along with Octave; see the file COPYING. If not, see
17## <http://www.gnu.org/licenses/>.
20## @deftypefn {Function File} {} copper (@var{n})
21## Create color colormap. This colormap is black to a light copper tone.
22## The argument @var{n} should be a scalar. If it
23## is omitted, the length of the current colormap or 64 is assumed.
27## Author: Kai Habel <kai.habel@gmx.de>
29function map = copper (number)
32 number = rows (colormap);
34 if (! isscalar (number))
35 error ("copper: argument must be a scalar");
44 x = linspace (0, 1, number)';
45 r = (x < 4/5) .* (5/4 * x) + (x >= 4/5);
56%! ## Show the 'copper' colormap as an image
57%! image (1:64, linspace (0, 1, 64), repmat (1:64, 64, 1)')
58%! axis ([1, 64, 0, 1], "ticy", "xy")