MathGroup Archive 2008

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

Search the Archive

Re: GraphicGrid of GraphicGrids

  • To: mathgroup at smc.vnet.net
  • Subject: [mg90437] Re: [mg90406] GraphicGrid of GraphicGrids
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Wed, 9 Jul 2008 04:54:58 -0400 (EDT)
  • Reply-to: hanlonr at cox.net

Change the AspectRatio.

Options[GraphicsGrid]

grid = GraphicsGrid[{{Plot[Sin[x], {x, 0, 2*Pi}], 
     Plot[Cos[x], {x, 0, 2*Pi}]}}];
GraphicsGrid[{{grid}, {grid}, {grid}}, AspectRatio -> .6, 
 ImageSize -> 600]


Bob Hanlon

---- Aaron Fude <aaronfude at gmail.com> wrote: 

=============
Hi,

I have somebody else's code that produces GraphicGrids. When I combine
those into another graphic grid, there is a lot of unwanted white
space. How can one avoid it?

Here's the problem in a nutshell:

grid = GraphicsGrid [{{Plot[Sin[x], {x, 0, 2*Pi}],
    Plot[Cos[x], {x, 0, 2*Pi}]}}]
 GraphicsGrid[{{grid}, {grid}, {grid}}

Thanks!

Aaron




  • Prev by Date: Re: How to find the Max of a Piecewise function
  • Next by Date: Re: How to find the Max of a Piecewise function
  • Previous by thread: GraphicGrid of GraphicGrids
  • Next by thread: How to find the Max of a Piecewise function