Re: Re: He said DisplayTogetherArray, but ...
- To: mathgroup at smc.vnet.net
- Subject: [mg43114] Re: [mg43089] Re: He said DisplayTogetherArray, but ...
- From: Murray Eisenberg <murray at math.umass.edu>
- Date: Wed, 13 Aug 2003 07:49:47 -0400 (EDT)
- Organization: Mathematics & Statistics, Univ. of Mass./Amherst
- References: <bh26jl$hp5$1@smc.vnet.net> <200308120843.EAA20927@smc.vnet.net>
- Reply-to: murray at math.umass.edu
- Sender: owner-wri-mathgroup at wolfram.com
How is DisplayTogetherArray different here -- at least in what is displayed -- from a simple Show (wrapped around the GraphicsArray expression, of course)? Note, also, that the documentation for DisplayTogetherArray says: DisplayTogetherArray[plotcommands, opts] takes a sequence of plot commands ...and combines them to produce a GraphicsArray of the plots. That documentation would seem to suggest that the GraphicsArray is _not_ required! (Although, in fact, that is not the case!) Paul Abbott wrote: > In article <bh26jl$hp5$1 at smc.vnet.net>, gollum at email.si (Borut L) > wrote: > > >>I cannot figure out why this doesnot produce the desired result - >>image of 3x3 = 9 rectangles, it doesnot show anything! >> >>DisplayTogetherArray[ >> Partition[ >> Graphics[{Hue[#],Rectangle[{0,0},{1,1}]}]&/@ >> Range[0,.9,.1], >> 3] >> ] > > > First, I assume that you loaded the Graphics` stub: > > <<Graphics` > > Then, to create a GraphicsArray, you still need to wrap this command > around the array of Graphics objects; > > DisplayTogetherArray[ > GraphicsArray[ > Partition[ > Graphics[{Hue[#], Rectangle[{0, 0},{1, 1}]}, > AspectRatio -> Automatic] & /@ Range[0, 0.9, 0.1], > 3] > ] > ]; > > All DisplayTogetherArray does is simplify the suppression of > intermediate graphics. > > >>I am hoping Paul Abbot's going to answer this, as he introduced the >>command to me. > > > Cheers, > Paul > -- Murray Eisenberg murray at math.umass.edu Mathematics & Statistics Dept. Lederle Graduate Research Tower phone 413 549-1020 (H) University of Massachusetts 413 545-2859 (W) 710 North Pleasant Street fax 413 545-1801 Amherst, MA 01003-9305
- References:
- Re: He said DisplayTogetherArray, but ...
- From: Paul Abbott <paul@physics.uwa.edu.au>
- Re: He said DisplayTogetherArray, but ...