Example 2

Suppose that you have plotted a graph of vectors Y1 vs. X1 in window number 5; a graph of vectors Y2 vs. X2 in window number 7, and overlain a plot of Y3 vs. X3 also in window 7. To replot both windows, use the REPLOT\ALLWINDOWS command.

 WINDOW 5                   ! choose window
 GRAPH X1 Y1                ! plot data and axes
 WINDOW 7                   ! choose window
 GRAPH X2 Y2                ! plot data and axes
 GRAPH\OVERLAY X3 Y3        ! overlay a curve
 CLEAR\-REPLOT              ! clear graphics but not replot buffers
 REPLOT\ALL                 ! replot window 5 and window 7
 

  Example 1