Re: Do Plot
- To: mathgroup at smc.vnet.net
- Subject: [mg129124] Re: Do Plot
- From: "Nasser M. Abbasi" <nma at 12000.org>
- Date: Mon, 17 Dec 2012 02:54:56 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
- References: <kak6d6$k44$1@smc.vnet.net>
- Reply-to: nma at 12000.org
On 12/16/2012 4:05 AM, dwarnold45 at suddenlink.net wrote:
> Should this command work in Mathematica 9?
>
> Do[Plot[x^2 + c, {x, -2, 2}], {c, -1, 1, 0.2}]
>
> Not working on my Macbook Pro, Snow Leopard 10.6.8.
>
> David.
>
Need a Print
Do[Print@Plot[x^2 + c, {x, -2, 2}], {c, -1, 1, 0.2}]
I *think* this is the case since version 6. Before that, Print[]
was not needed.
--Nasser
- Follow-Ups:
- Re: Do Plot
- From: Murray Eisenberg <murray@math.umass.edu>
- Re: Do Plot