Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.1.0 - 日本語


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 >>

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:
Mon May 22 12:43:11 CEST 2023