Re: Plot in a Do loop does nothing
- To: mathgroup at smc.vnet.net
- Subject: [mg78241] Re: Plot in a Do loop does nothing
- From: markholtuk at googlemail.com
- Date: Wed, 27 Jun 2007 05:14:21 -0400 (EDT)
- References: <f5qmft$475$1@smc.vnet.net>
On Jun 26, 10:32 am, "Tim Birks" <pys... 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 Hi Tim, Either of these will show the plots: Do[pl = Plot[Sin[x], {x, 0, 2*n*Pi}]; Print[pl], {n, 1, 2}] GraphicsColumn[Table[Plot[Sin[x], {x, 0, 2*n*Pi}], {n, 1, 2}]] Best wishes, Mark