replot - redraw the current graphics window with new boundaries
replot is used to redraw the content of the current graphics window with new boundaries defined by rect=[xmin,ymin,xmax,ymax] . It works only with the driver "Rec" .
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;
xbasr ,
J.Ph.C.