MathGroup Archive 2006

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

Search the Archive

Re: Arrange cells side by side

  • To: mathgroup at smc.vnet.net
  • Subject: [mg72235] Re: Arrange cells side by side
  • From: "dimitris" <dimmechan at yahoo.com>
  • Date: Fri, 15 Dec 2006 07:06:38 -0500 (EST)
  • References: <elor8t$o61$1@smc.vnet.net>

Speciffically for plots you can use GraphicsArray as the following
examples
demonstrate

Show[GraphicsArray[Block[{$DisplayFunction = Identity},
    (ContourPlot[#1[Sqrt[x + I*y]], {x, -1, 1}, {y, -1, 1}, Contours ->
50, PlotPoints -> 50, ContourShading -> False] & ) /@
     {Re, Im}], Frame -> True], ImageSize -> 500];

Show[GraphicsArray[Block[{$DisplayFunction = Identity},
     (Plot3D[#1[Sqrt[x + I*y]], {x, -1, 1}, {y, -1, 1}, PlotPoints ->
35] & ) /@ {Re, Im}],
Frame -> True], ImageSize -> 700];


> Hello,
>
> is it possible to arrange cells (in the Notebook) side by side instead
> of on top of each other?
>
> I have two plots more high then width. They are better compareable
> beside each other.
> 
> Thank you,
> Bastian


  • Prev by Date: Re: Deformed Matrix Product
  • Next by Date: Re: Complex Numbers to list of points
  • Previous by thread: Re: Arrange cells side by side
  • Next by thread: How to solve this equation?