colormap
View and set current colormap
Syntax
Description
Set Colormap
colormap
sets the colormap for
the current figure to the specified predefined colormap. For example,
map
colormap hot
sets the colormap to
hot
.
If you set the colormap for the figure, then axes and charts in the figure use the same colormap. The new colormap is the same length (number of colors) as the current colormap. When you use this syntax, you cannot specify a custom length for the colormap. See the More About section for more information about colormaps.
sets the colormap and returns it as a three-column matrix of RGB triplets.
Specify cmap
= colormap(___)cmap
as an output argument with any of the previous
syntaxes that use parentheses.
Examples
Change Colormap for Figure
Set Colormap Back to Default
First, change the colormap for the current figure to summer
.
surf(peaks)
colormap summer
Now set the colormap back to your system's default value. If you have not specified a different default value, then the default colormap is parula
.
colormap default
Use Different Colormaps for Each Axes in Figure
You can display a tiling of plots using the tiledlayout
and nexttile
functions. Call the tiledlayout
function to create a 2-by-1 tiled chart layout. Call the nexttile
function to create the axes objects ax1
and ax2
. Specify a different colormap for each axes by passing the axes object to the colormap
function. In the upper axes, create a surface plot using the spring
colormap. In the lower axes, create a surface plot using the winter
colormap.
tiledlayout(2,1) ax1 = nexttile; surf(peaks) colormap(ax1,spring) ax2 = nexttile; surf(peaks) colormap(ax2,winter)
Specify Number of Colors for Colormap
Specify the number of colors used in a colormap by passing an integer as an input argument to the built-in colormap. Use five colors from the parula colormap.
mesh(peaks) colormap(parula(5))
Create Custom Colormap
Create a custom colormap by defining a three-column matrix of values between 0.0 and 1.0. Each row defines a three-element RGB triplet. The first column specifies the red intensities. The second column specifies the green intensities. The third column specifies the blue intensities.
Use a colormap of blue values by setting the first two columns to zeros.
map = [0 0 0.3 0 0 0.4 0 0 0.5 0 0 0.6 0 0 0.8 0 0 1.0]; surf(peaks) colormap(map)
Return Colormap Values Used in Plot
Create a surface plot of the peaks
function and specify a colormap.
mesh(peaks) colormap(autumn(5))
Return the three-column matrix of values that define the colors used in the plot. Each row is an RGB triplet color value that specifies one color of the colormap.
cmap = colormap
cmap = 5×3
1.0000 0 0
1.0000 0.2500 0
1.0000 0.5000 0
1.0000 0.7500 0
1.0000 1.0000 0
Return Colormap Values for Specific Axes
Return the colormap values for a specific axes by passing the axes object to the colormap
function.
Create a tiling of two plots using the tiledlayout
and nexttile
functions. Call the tiledlayout
function to create a 2-by-1 tiled chart layout. Call the nexttile
function to create the axes objects ax1
and ax2
. Then display two filled contour plots with different colormaps.
tiledlayout(2,1) ax1 = nexttile; contourf(peaks) colormap(ax1,hot(8)) ax2 = nexttile; contourf(peaks) colormap(ax2,pink)
Return the colormap values used in the upper plot by passing ax1
to the colormap
function. Each row is an RGB triplet color value that specifies one color of the colormap.
cmap = colormap(ax1)
cmap = 8×3
0.3333 0 0
0.6667 0 0
1.0000 0 0
1.0000 0.3333 0
1.0000 0.6667 0
1.0000 1.0000 0
1.0000 1.0000 0.5000
1.0000 1.0000 1.0000
Change Colormap for Figure with Image
Load the spine
data set that returns the image X
and its associated colormap map
. Display X
using the image
function and set the colormap to map
.
load spine
image(X)
colormap(map)
Input Arguments
map
— Colormap for new color scheme
colormap name | three-column matrix of RGB triplets | 'default'
Colormap for the new color scheme, specified as a colormap name, a
three-column matrix of RGB triplets, or 'default'
. A
colormap name specifies a predefined colormap with the same number of colors
as the current colormap. A three-column matrix of RGB triplets specifies a
custom colormap. You can create the matrix yourself, or you can call one of
the predefined colormap functions to create the matrix. For example,
colormap(parula(10))
sets the colormap of the current
figure to a selection of 10 colors from the parula
colormap.
A value of 'default'
sets the colormap to the default
colormap for the target object.
Colormap Name
The following table lists the predefined colormaps.
Colormap Name | Color Scale |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Three-Column Matrix
To create a custom colormap, specify map
as a
three-column matrix of RGB triplets where each row defines one color. An
RGB triplet is a three-element row vector whose elements specify the
intensities of the red, green, and blue components of the color. The
intensities can be double
or
single
values in the range [0, 1], or they can be
uint8
values in the range [0, 255]. For example,
this matrix defines a colormap containing five
colors.
map = [0.2 0.1 0.5 0.1 0.5 0.8 0.2 0.7 0.6 0.8 0.7 0.3 0.9 1 0];
This table lists the RGB triplet values for common colors.
Color | double or
single RGB Triplet | uint8 RGB Triplet |
---|---|---|
yellow | [1 1 0] | [255 255 0] |
magenta | [1 0 1] | [255 0 255] |
cyan | [0 1 1] | [0 255 255] |
red | [1 0 0] | [255 0 0] |
green | [0 1 0] | [0 255 0] |
blue | [0 0 1] | [0 0 255] |
white | [1 1 1] | [255 255 255] |
black | [0 0 0] | [0 0 0] |
Data Types: char
| double
| single
| uint8
target
— Target
Figure
object | Axes
object | PolarAxes
object | GeographicAxes
object | standalone visualization
Target, specified as one of these values:
Figure
object. The figure colormap affects plots for all axes within the figure.Axes
object,PolarAxes
object, orGeographicAxes
object. You can define a unique colormap for the different axes within a figure.Standalone visualization that has a
Colormap
property. For example, you can change or query the colormap for aHeatmapChart
object.
Output Arguments
cmap
— Colormap values
three-column matrix of RGB triplets
Colormap values, returned as a three-column matrix of RGB triplets. Each row of the matrix defines one RGB triplet that specifies one color of the colormap. The values are in the range [0, 1].
More About
Colormap
A colormap is a matrix of values that define the colors for graphics objects such as surface, image, and patch objects. MATLAB® draws the objects by mapping data values to colors in the colormap.
Colormaps can be any length, but must be three columns wide. Each row in the matrix
defines one color using an RGB triplet. An RGB triplet is a three-element row vector whose
elements specify the intensities of the red, green, and blue components of the color.
Typically, the intensities are double
or single
values
in the range [0, 1]. A value of 0
indicates no color and a value of
1
indicates full intensity. For example, this command creates a
colormap that has five colors: black, red, green, blue, and
white.
mymap = [0 0 0 1 0 0 0 1 0 0 0 1 1 1 1];
To change the color scheme of a visualization, call the colormap
function to change the colormap of the containing axes or figure. For example, these
commands create a surface plot and set the colormap of the figure to
mymap
.
surf(peaks) colormap(mymap)
Tips
To control the limits of the colormap, and how those limits relate to the range of your data, use the
clim
function.Before R2022a: Use
caxis
, which has the same syntaxes and arguments asclim
.
Version History
Introduced before R2006aR2023a: Return colormap matrix when setting default colormap
You can optionally specify an output argument to store the colormap array when you set the current figure's colormap to the default value. For example:
cmap = colormap("default")
R2020b: Colormap 'default'
option for heatmap displays the blue colormap instead of parula
Setting the colormap on a heatmap chart to 'default'
sets the
chart's colormap to the default blue colormap for heatmap charts. In R2020a and
previous releases, the 'default'
option changes the colormap to
parula
.
To specify the default colormap for a heatmap chart, pass the chart to the
colormap
function.
h = heatmap(rand(10));
colormap(h,'default')
Only heatmap charts are affected by this change.
R2018a: Setting figure colormap also sets the axes colormap
Starting in R2018a, if you set the colormap for a figure, then axes and charts in
the figure use the same colormap. Previously, any axes or chart that you set the
colormap for explicitly were unaffected when you set the figure colormap. If you
want an Axes
object to use a different colormap than the figure,
then set the axes colormap after setting the figure colormap.
See Also
Functions
Tools
Topics
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)