Re: Plot in a Do loop does nothing
- To: mathgroup at smc.vnet.net
- Subject: [mg78297] Re: [mg78229] Plot in a Do loop does nothing
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Wed, 27 Jun 2007 05:43:03 -0400 (EDT)
- Reply-to: hanlonr at cox.net
Do[Print[Plot[Sin[x], {x, 0, 2*n*Pi}]], {n, 1, 2}] GraphicsColumn[Table[Plot[Sin[x], {x, 0, 2*n*Pi}], {n, 1, 2}]] Bob Hanlon ---- Tim Birks <pystab at hotmail.com> wrote: > > Can anyone please explain why the line: > Do[Plot[Sin[x], {x, 0, 2*n*Pi}], {n, 1, 2}] > > does nothing in Mathematica 6? Or, how else I can produce such a series of > related plots? It worked fine in Mathematica 5! > > T > > >