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

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Graphics > figure_operations > drawnow

drawnow

隠されたグラフィックエンティティを描画.

呼び出し手順

drawnow()

説明

カレントの図に関して, この関数は, drawlaterをコールすることにより延期されていた 隠されたグラフィックエンティティとその子を描画するために 使用されます.カレントの図immediate_drawing プロパティは "on"に設定されます.

この関数は特にdrawlater 関数と組み合わせて使用されます.

f=get("current_figure") // カレントの図のハンドル

drawlater()

subplot(221);

t=1:10;plot2d(t,t.^2)

subplot(222);

x=0:1:7;plot2d(x,cos(x),2)

subplot(234);

plot2d(t,cos(t),3);

subplot(235);

plot2d(x,sin(2*x),5);

subplot(236);

plot2d(t,tan(2*t));

drawnow(); // カレントの図を描画

参照

  • get — グラフィックエンティティまたはユーザーインターフェイスオブジェクト からプロパティの値を取得する.
  • set — グラフィックエンティティオブジェクトまたは またはユーザインターフェイスオブジェクトのプロパティの値を設定する.
  • drawlater — 軸の子を不可視にする.
  • graphics_entities — グラフィックスエンティティデータ構造体の説明
Report an issue
<< drawlater figure_operations figure_properties >>

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:
Thu Feb 14 15:02:15 CET 2019