Re: Do command
- To: mathgroup at smc.vnet.net
- Subject: [mg120660] Re: Do command
- From: "andre.robin3" <andre.robin3 at wanadoo.fr>
- Date: Wed, 3 Aug 2011 07:04:38 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <j18m27$slc$1@smc.vnet.net>
The reason is that since version 6 of mathematica, the output of Plot is no more a side effect. The solution : Do[ Print [ Plot[Sin[x - c], {x, 0, 4 Pi, Pi/10}, Ticks -> None] ] , {c, 0, 2 Pi - Pi/10, Pi/10}] "DaleJenk" <dale.jenkins8 at deletegooglemail.com> a écrit dans le message de news: j18m27$slc$1 at smc.vnet.net... > I'm working my way through the 1999 edition of Mathematica Navigator and > using Mathematica 7 Home Edition. The following command is supposed to > bring > up a plot but for some reason it doesn't. > > Do[Plot[Sin[x - c], {x, 0, 4 Pi, Pi/10}, Ticks -> None], {c, 0, > 2 Pi - Pi/10, Pi/10}] > > Thanks for any help. > > >