Navigation

Operators and Keywords

Function List:

C++ API

: map = flag ()
: map = flag (n)

Create color colormap. This colormap cycles through red, white, blue, and black with each index change.

The argument n must be a scalar. If unspecified, the length of the current colormap, or 64, is used.

See also: colormap.

Demonstration 1

The following code

 ## Show the 'flag' colormap profile and as an image
 cmap = flag (12);  # 4 colors, therefore cycle 3 times
 subplot (2, 1, 1);
  rgbplot (cmap, "composite");
 subplot (2, 1, 2);
  rgbplot (cmap);

Produces the following figure

Figure 1

Package: octave