Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - Français

Change language to:
English - 日本語 - 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

Aide de Scilab >> Graphiques > Fenêtres - Figures > drawnow

drawnow

draw hidden graphics entities.

Syntax

drawnow()

Description

Considering the current figure, this function can be used to draw the hidden graphics entities and all its children, that may have been postponed by a previous call to drawlater. The immediate_drawing property of the current figure is set to "on".

It can specially be used with the drawlater function.

Examples

f=get("current_figure") // handle of the 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(); // draw the current figure

See also

  • get — Gets the handle of a graphical or User Interface object, or the property's value of objects.
  • set — set properties of some graphic objects or uimenus or uicontrol interactive components
  • drawlater — makes axes children invisible.
  • graphics_entities — description of the graphics entities data structures
Report an issue
<< drawlater Fenêtres - Figures 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:
Mon Jan 03 14:33:07 CET 2022