close a figure
:h integer Handle of the window to close. :
This routine close a tksci figure (toplevel window). If a handle is given, the figure corresponding to this handle is closed. Otherwise, the current (active) figure is closed.
h=`figure`_();
// creates figure number 1.
`uicontrol`_( h, 'style','text', ...
'string','scilab is great', ...
'position',[50 70 100 100], ...
'fontsize',15);
// put a clever text in figure 1
`figure`_();
// create figure 2
`uicontrol`_( 'style','text', ...
'string','Really great', 'position',[50 70 100 100], 'fontsize',15);
// put a text in figure 2
close();
// close the current graphic window (ie fig. 2)
close(h);
// close figure 1