Question: Animating from vectors of data

I have four column vectors of data points; X1,Y1,X2,Y2 (n=30) where pointA is given by (X1[n],Y1[n]) and pointB by (X2[n],Y2[n]) I can plot lines using indvidual rows with n=rownumber plot([ [X1[n],Y1[n]],[X2[n],Y2[n]] ]) However, I want to animate the plot so it shows n=1, then n=2 and etc. I am aware of the "insequence" option but I don't want to have to write the 30 entries into a "display" command. Any tips
Please Wait...