- 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
colordef
異なる色スキームで表示するためのデフォルト色の値を設定する
呼び出し手順
colordef(color_scheme) colordef(f,color_scheme) colordef('new',color_scheme)
パラメータ
- color_scheme
文字列で, 以下の値を指定: 'white', 'black','none'
- f
グラフィック図のハンドル
説明
colordef('white')
は,デフォルトの 図(gdf参照)カラーマップをjetcolormap(64)
, デフォルトの図の背景色をライトグレー, デフォルトの軸 (gda参照) 背景色を白, 軸の線の前景色とフォントの色を黒に設定します.colordef('black')
は,デフォルトの 図(gdf参照)カラーマップをjetcolormap(64)
, デフォルトの図の背景色をダークグレー, デフォルトの軸 (gda参照) 背景色を黒, 軸の線の前景色とフォントの色を白に設定します.colordef('none')
は,デフォルトの 図(gdf参照)カラーマップをhsvcolormap(64)
, デフォルトの図の背景色をダークグレー, デフォルトの軸 (gda参照) 背景色を黒, 軸の線の前景色とフォントの色を白に設定します.colordef(f,color_scheme)
はハンドルf
で指定した図の色プロパティを設定し,同時に そのカレントの軸の色プロパティも設定します.colordef('new',color_scheme)
は,新しいグラフィックウインドウおよび その色プロパティを軸プロパティと共に作成します.
例
参照
- gdf — デフォルトの図(figure)のハンドルを取得.
- gda — デフォルトの軸(axes)のハンドルを取得.
- figure_properties — グラフィックエンティティプロパティの説明
- axes_properties — axesエンティティプロパティの説明
作者
- S. Steer
INRIA
<< colorbar | Color management | colormap >> |