 
 
 
 
 
 
Re: Animate command on ListPlot:
- To: mathgroup at smc.vnet.net
- Subject: [mg74190] Re: Animate command on ListPlot:
- From: Gopinath Venkatesan <gopinathv at ou.edu>
- Date: Wed, 14 Mar 2007 03:42:58 -0500 (EST)
I made a mistake in the posting I made. The commands I used are:
y1 = Table[{t[[k]], W[[1,k]]}, {k, 1, n}]; 
y2 = Table[{t[[k]], W[[2,k]]}, {k, 1, n}]; 
y3 = Table[{t[[k]], W[[3,k]]}, {k, 1, n}]; 
p1 = ListPlot[y1, PlotJoined -> True]; 
p2 = ListPlot[y2, PlotJoined -> True]; 
p3 = ListPlot[y3, PlotJoined -> True]; 
ShowAnimation[{p1, p2, p3}];
Sorry for the confusion.
Gopinath

