MathGroup Archive 2002

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

Search the Archive

scatter3Dplot_movie

  • To: mathgroup at smc.vnet.net
  • Subject: [mg33015] scatter3Dplot_movie
  • From: "Umby" <umprisco at unina.it>
  • Date: Tue, 26 Feb 2002 04:34:56 -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). How can I do?

Thanks in advance, Umby




  • Prev by Date: Re: How build a ?TestFuntion that applied to a list gives only the elements that are function of x
  • Next by Date: RE: How build a ?TestFuntion that applied to a list gives only the elements that are function of x
  • Previous by thread: Re: How build a ?TestFuntion that applied to a list gives only the elements that are function of x
  • Next by thread: Sound and CDs query. Probably an FAQ but I could not find it.