Learn R Programming

matlab (version 1.0.4.1)

jet.colors: MATLAB jet function

Description

Creates a vector of n colors beginning with dark blue, ranging through shades of blue, cyan, green, yellow and red, and ending with dark red.

Usage

jet.colors(n)

Value

Returns vector of n color names. This can be used either to create a user-defined color palette for subsequent graphics, a col=

specification in graphics functions, or in par.

Arguments

n

numeric scalar specifying number of colors to be in the palette

Author

P. Roebuck proebuck1701@gmail.com

See Also

Examples

Run this code
require(graphics)
x <- 1:16
pie(x, col=jet.colors(length(x)))

Run the code above in your browser using DataLab