Re: What's happening with Show[] in Mathematica 6?
- To: mathgroup at smc.vnet.net
- Subject: [mg79038] Re: What's happening with Show[] in Mathematica 6?
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Mon, 16 Jul 2007 02:21:24 -0400 (EDT)
- Organization: The Open University, Milton Keynes, UK
- References: <f7caok$97d$1@smc.vnet.net>
krassi at veltrade.net wrote: > I tryed to run older notebooks in Mathematica 6 and I have this > problem: when I have the Show[] function in somewhere, it doesn't plot > anything! > Fro example, run this: > Do[Plot[Sun[x i],{x,-3,3}],{i,1,10}] > > It doesn't output anything! > What's the problem? First, I believe you meant *Sin* rather than /Sun/. Second, use *Print* as it has been answered many time previously in this newsgroup. For instance, Do[Print@Plot[Sin[x i], {x, -3, 3}], {i, 1, 10}] Regards, Jean-Marc