MathGroup Archive 2007

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: display change in version 6

  • To: mathgroup at smc.vnet.net
  • Subject: [mg77419] Re: display change in version 6
  • From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
  • Date: Fri, 8 Jun 2007 05:31:42 -0400 (EDT)
  • Organization: The Open University, Milton Keynes, UK
  • References: <f48g2u$fh6$1@smc.vnet.net>

Veit Elser wrote:
> In version 5 the loop
> 
> Do[
>    Show[Graphics[Raster[Table[Random[], {3}, {3}]]]], {2}]
> 
> displays two graphics objects. In version 6 the same loop
> produces no display. What has changed and how do I recover
> the displays as they are produced in the loop?
> 
> Veit Elser

Use Print instead of Show.

Do[Print[Graphics[Raster[Table[Random[], {3}, {3}]]]], {2}]

Regards,
Jean-Marc


  • Prev by Date: Re: Antialiasing of 3D graphics
  • Next by Date: 6.0 Standard Packages?, New Style Documentation?
  • Previous by thread: Re: display change in version 6
  • Next by thread: Re: display change in version 6