- Scilab Online Help
- Graphics Library
- Color management
- addcolor
- autumncolormap
- bonecolormap
- color
- color_list
- colorbar
- colordef
- colormap
- coolcolormap
- coppercolormap
- getcolor
- graycolormap
- hotcolormap
- hsv2rgb
- hsvcolormap
- jetcolormap
- name2rgb
- oceancolormap
- pinkcolormap
- rainbowcolormap
- rgb2name
- springcolormap
- summercolormap
- whitecolormap
- wintercolormap
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
colormap
using colormaps
Description
A colormap cmap
is defined by a m x 3 matrix. m is the number of colors.
Color number i is given as a 3-uple cmap(i,1)
, cmap(i,2)
cmap(i,3)
corresponding respectively to red, green and blue intensity between
0 and 1.
At the beginning, 32 colors are defined in the colormap. You can
change the colormap of a figure by using set(f,"color_map",cmap)
where f
is the handle of the figure.
Each color in the colormap has an id you have to use to specify color in most plot functions. To see the ids, use function getcolor.
The functions hotcolormap, jetcolormap and graycolormap provide colormaps with continuous variation of the colors.
You can get the default colormap by cmap=get(sdf(),"color_map")
.
Examples
See Also
<< colordef | Color management | coolcolormap >> |