Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.0 - Русский

Change language to:
English - Français - 日本語 - Português -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Справка Scilab >> Графики > color_management > addcolor

addcolor

add new colors to the current colormap

Syntax

new=addcolor(c)

Arguments

new

ids of the colors defined in c in the new color table.

c

matrix with 3 columns, RGB color definition.

Description

addcolor adds new colors given in the c argument to the current colormap. c must be a matrix with 3 columns [R G B]R is red component, G is green component, B is blue component). Each entry in c must be a non negative number less or equal to 1.

The ids of the new colors are returned into new.

If a color defined in c is already present in the current colormap it is not added.

Examples

plot3d();
h = gcf();
h.color_map = jetcolormap(16);
addcolor(name2rgb('grey')/255);

See also

  • colormap — using colormaps
  • name2rgb — returns the RGB values of a named color
Report an issue
<< oбразчики color_management color >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Feb 14 15:13:26 CET 2017