Scilab Function
Last update : April 1993

replot - redessine la fenêtre graphique courante en changeant les bornes

Calling Sequence

replot(rect)

Parameters

Description

replot est utilisée pour redessiner la fenêtre graphique courante en changeant les bornes, données sous la forme rect=[xmin,ymin,xmax,ymax]. Fonctionne uniquement avec le pilote "Rec".

Examples

backupstyle='?'
if (get('old_style')=='off') then
  set('old_style','on');
  backupstyle='off'
end
x=[0:0.1:2*%pi]';
plot2d(x,sin(x))
replot([-1,-1,10,2])
if (backupstyle =='off') then set('old_style',backupstyle);end;

 

See Also

xbasr,  

Author

J.Ph.C.