X
PrevPrev Go to previous topic
NextNext Go to next topic
Last Post 16 Aug 2010 07:46 AM by  anon
OPLOT and WINDOW
 1 Replies
Sort:
You are not authorized to post a reply.
Author Messages

anon



New Member


Posts:5
New Member


--
16 Aug 2010 07:46 AM
    Hi there, Does anyone know if it's possible to plot to a window, then open another window and plot to that, and then return to the original window and overplot? I've tried using WSET, but the OPLOT doesn't remember the original PLOT. In code terms it looks something like: FOR i=0,4 DO BEGIN IF (i EQ 0) THEN BEGIN WINDOW,0,TITLE='Original Plots' PLOT, array1, array2[i,*] ENDIF ELSE BEGIN WSET=0 & OPLOT,array1, array2[i,*] ; So this I want to overplot on the plot on WINDOW 0.. ENDELSE WINDOW,1, TITLE='Different Plots' PLOT, b_array1, b_array2[i,*] ENDFOR Any help / advice appreciated. Thanks, Rich

    Deleted User



    New Member


    Posts:
    New Member


    --
    16 Aug 2010 10:58 AM
    The syntax for WSET should be WSET, 0 not WSET=0.
    You are not authorized to post a reply.