Re: Animate multiple listplots
- To: mathgroup at smc.vnet.net
- Subject: [mg25306] Re: [mg25247] Animate multiple listplots
- From: Matt.Johnson at autolivasp.com
- Date: Tue, 19 Sep 2000 03:45:31 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Andrew-
this breaks the list into groups of 50. Use ReadList if you need to read the data from a file. Double-click on one of the graphics to animate.
data = Table[{Random[], Random[]}, {5000}];
Do[ListPlot[Partition[data, 50][[i]],
PlotRange -> {{-0.05, 1.05}, {-0.05, 1.05}}], {i, 5000/50}];
-matt
"Andrew R. Harris" <quadratic at earthlink.net> on 09/17/2000 02:47:26 AM
cc:
Subject: [mg25306] [mg25247] Animate multiple listplots
I have a list of 5000 pairs of coordinates. I am looking for a way to
read the list in increments of 50 sets of coordinates. plot the lists
and then animate the plots .
Andrew Harris