lines - Lines colormap array - MATLAB (original) (raw)

Main Content

Syntax

Description

c = lines returns the lines colormap as a three-column array with the same number of rows as the colormap for the current figure (gcf). If no figure exists, then the array contains 256 rows. Each row in the array contains the red, green, and blue intensities for a specific color. The intensities are in the range [0,1], and the color scheme matches the default ColorOrder property of theAxes. Thus, you can use this colormap to make your chart colors match the output of the plot function.

Sample of the lines colormap

c = lines([m](#bvinbup-1%5Fsep%5Fshared-m)) returns the colormap with m colors.

example

Examples

collapse all

Create a scatter plot using the default colors.

x = [3.5 3.3 5 6.1 4 2]; y = [14 5.7 12 6 8 9]; sz = 100*[6 100 20 3 15 20]; c = [1 2 3 4 5 6]; scatter(x,y,sz,c,'filled','MarkerEdgeColor','k','MarkerFaceAlpha',.7); xlim([1 7]); ylim([1 16]);

Figure contains an axes object. The axes object contains an object of type scatter.

Get the lines colormap array with six entries. Then replace the colormap in the scatter plot.

c = lines(6); colormap(c);

Figure contains an axes object. The axes object contains an object of type scatter.

Input Arguments

collapse all

Number of colors, specified as a nonnegative integer. The default value ofm is the number of colors in the current figure's colormap. If no figure exists, the default value is 256.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Version History

Introduced before R2006a

expand all

Starting in R2019b, colormaps have 256 colors by default.

In R2019a and previous releases, the default size is 64. If you have code that depends on a colormap having 64 colors, specify the number of colors when you set the colormap for the figure, axes, or chart. For example,colormap(lines(64)) sets the figure's colormap to the 64-color lines colormap.

Alternatively, you can change the default colormap for all figures within your MATLABĀ® session:

set(groot,'defaultFigureColormap',lines(64))