Scilab 6.1.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
sdf
デフォルトの図(figure)を設定.
呼び出し手順
sdf() set(gdf(), "default_values",1)
引数
- f
ハンドル, デフォルトの図のハンドル.
説明
このルーチンは図(figure)の規範をデフォルト値にリセットします.
Examples
x=[0:0.1:2*%pi]'; f=get("default_figure"); // 規範となる図のハンドルを取得 a=get("default_axes"); // 規範となる軸のハンドルを取得 // そのプロパティを設定s f.background=4; f.auto_resize="off"; f.figure_size=[400 300]; f.axes_size=[600 400]; f.figure_position=[0 -1]; a.x_location="top"; a.y_location="left"; for (i=1:6) scf(i); // ID iを指定して図を作成 plot2d(x,[sin(x) cos(x)],[i -i]) xclick(); if i == 4, sdf(); end // 図の規範のデフォルト値を返す end
参照
- colordef — Set the color look-and-feel of a given or of all forthcoming graphic figures
- gdf — デフォルトの図(figure)のハンドルを取得.
- scf — カレントの図に指定する (window)
- sda — デフォルトの軸(Axes)を設定.
- gda — デフォルトの軸(axes)のハンドルを取得.
- set — グラフィックエンティティオブジェクトまたは またはユーザインターフェイスオブジェクトのプロパティの値を設定する.
- graphics_entities — グラフィックスエンティティデータ構造体の説明
- setlookandfeel — 現在のルックアンドフィールのデフォルト値を設定.
Report an issue | ||
<< scf | figure_operations | show_window >> |