Re: display change in version 6
- To: mathgroup at smc.vnet.net
- Subject: [mg77448] Re: display change in version 6
- From: Szabolcs <szhorvat at gmail.com>
- Date: Sat, 9 Jun 2007 05:28:44 -0400 (EDT)
- Organization: University of Bergen
- 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 Table instead of Do.
GraphicsColumn@Table[
Graphics[Raster[Table[Random[], {3}, {3}]]],
{2}]
Szabolcs