Scilab 5.3.3
- Scilab help
- Graphics
- 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
name2rgb
指定した名前の色の RGB値を返す
呼び出し手順
rgb=name2rgb(name)
パラメータ
- name
色の名前.
- rgb
カラーのRGB整数値ベクトル.
整数
name2rgb
は名前で指定した色のRGB値を返します.
結果はベクトル[r,g,b]
となります.
ただし,r
, g
および b
は
0から255の間の整数でそれぞれ赤,緑,青の色要素に対応します.
通常と同様,0は明度がないことを意味し,255は色の明度が最大であることを意味します.
色が見つからない場合, []
が返されます.
既知の色の一覧は color_listにより 取得できます.
例
rgb=name2rgb("gold") rgb2name(rgb)
参照
- color — 色の色IDを取得
- color_list — 色の名前のリスト
- rgb2name — 色の名前を返す
<< jetcolormap | Color management | oceancolormap >> |