MathGroup Archive 2002

[Date Index] [Thread Index] [Author Index]

Search the Archive

scatterplot3d_movie

  • To: mathgroup at smc.vnet.net
  • Subject: [mg32989] scatterplot3d_movie
  • From: "Umby" <umprisco at unina.it>
  • Date: Sat, 23 Feb 2002 02:38:07 -0500 (EST)
  • Organization: C.D.S. Centro di Servizi Didattico Scientifico
  • Sender: owner-wri-mathgroup at wolfram.com

Hi MathGroup,

I have the following script of Mathematica:

points1 = Flatten[Table[{i, j, 5}, {i, -2, 2, 1}, {j, -2, 2, 1}], 1];
points = Table[Transpose[Transpose[points1] - {0, 0, i}], {i, 1, 5}];
disetot =
    Table[ScatterPlot3D[points[[i]], PlotRange -> {0, 5.1},
        AxesLabel -> {X, Y, Z},
        PlotStyle -> {RGBColor[i/Dimensions[points][[1]], 0, 0],
            PointSize[0.0083]},DisplayFunction ->
          Identity], {i, 1, Dimensions[points][[1]]}];
Show[disetot,
    DisplayFunction -> $DisplayFunction];

'disetot' is a list of graphics. I would like the graphics of 'disetot' to
appear inside a plot in their order (disetot[[1]], disetot[[2]],
disetot[[3]], disetot[[4]] and so on...) as a movie, and export this movie
as a file (.avi, .gif(animate), or others).

Thanks, Umby




  • Prev by Date: Re: Reading .csv files
  • Next by Date: Getting rid of box format
  • Previous by thread: Re: Iterative application of FindRoot with adjusted started values
  • Next by thread: scatterplot3d_movie