Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
gda
デフォルトの軸(axes)のハンドルを取得.
呼び出し手順
a = gda() a = get("default_axes")
引数
- a
ハンドル, デフォルトの軸のハンドル.
説明
デフォルトの axesは決して描画されないグラフィックエンティティです. これは, axes のプロパティのデフォルト値の基準として使用されます. これらのデフォルトのプロパティ値は図の中で新しい軸(axes)を初期化する 際に使用されます.
gda
関数はデフォルトの軸のハンドルを返します.
ユーザはこのハンドルを用いて
axes のプロパティのデフォルト値を設定または取得することができます.
figureエンティティに関しても等価なデフォルトのグラフィックエンティティが
存在することに注意してください ( gdf
参照).
例
a=gda() // 軸(axes)のハンドルを取得 // プロパティを設定 a.box="off"; a.foreground=2; a.labels_font_size=3; a.labels_font_color=5; a.sub_tics=[5 5 3]; a.x_location="top"; //描画に軸を使用 subplot(211) // axes エンティティを作成 plot2d() // 他のプロパティを設定 a.background=color('gray') a.grid=[5 5 5]; subplot(212) t=0:0.1:5*%pi; plot2d(sin(t),cos(t)) set(a,"default_values",1); // モデルのデフォルト値を返す // sda() 関数を参照 clf() plot2d(sin(t),cos(t))
参照
- gdf — デフォルトの図(figure)のハンドルを取得.
- sda — デフォルトの軸(Axes)を工場出荷時のデフォルト値にリセット
- sdf — デフォルトの図(figure)を設定.
- clf — Clears and resets a figure or a frame uicontrol
- gca — カレントの軸のハンドルを返す.
- get — Gets the handle of a graphical or User Interface object, or the property's value of objects.
- graphics_entities — グラフィックスエンティティデータ構造体の説明
Report an issue | ||
<< gca | axes_operations | isoview >> |