MathGroup Archive 2013

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

Search the Archive

Re: problems with plots aligning

  • To: mathgroup at smc.vnet.net
  • Subject: [mg129781] Re: problems with plots aligning
  • From: Alexei Boulbitch <Alexei.Boulbitch at iee.lu>
  • Date: Wed, 13 Feb 2013 04:49:31 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net

Hi, Piotr,

There is a regular way using the ImagePadding, but I prefer doing it fast by hand.
Try this:

Manipulate[
 figA = Plot[Sin[x], {x, 0, 10}, Axes -> False, Frame -> True,
   ImageSize -> sz1];
 figB = Plot[Cos[x], {x, 0, 10}, Axes -> False, Frame -> True,
   AspectRatio -> 0.2, ImageSize -> sz2];
 figC = Plot[Sin[x], {x, 0, 5}, Axes -> False, Frame -> True,
   AspectRatio -> 0.2, ImageSize -> sz2];
 Column[{figA, Row[{figB, figC}]}],
 {sz1, 200, 500}, {sz2, 200, 500}
 ]

and play with the sliders until you get what you want. Then insert the corresponding values of the image sizes, sz1 and sz2, into the definitions of the images and evaluate without the Manipulate statement. For example, try this:

figA = Plot[Sin[x], {x, 0, 10}, Axes -> False, Frame -> True,
   ImageSize -> 434];
figB = Plot[Cos[x], {x, 0, 10}, Axes -> False, Frame -> True,
   AspectRatio -> 0.2, ImageSize -> 218];
figC = Plot[Sin[x], {x, 0, 5}, Axes -> False, Frame -> True,
   AspectRatio -> 0.2, ImageSize -> 218];
Column[{figA, Row[{figB, figC}]}]

Have fun, Alexei




Dear All,

I would like to ask if anybody know how to fix a following problem:

I need to plot 3 figures. The main one (figA) and two small figures under it (figB and figC). However, when I use GraphicsGrid command then the main figure is very small. Does anybody know how to align frames of this three figures?

figA = Plot[Sin[x], {x, 0, 10}, Axes -> False, Frame -> True];
figB = Plot[Cos[x], {x, 0, 10}, Axes -> False, Frame -> True, AspectRatio-> 0.2];
figC = Plot[Sin[x], {x, 0, 5}, Axes -> False, Frame -> True, AspectRatio -> 0.2];
GraphicsGrid[{{figA}, {figB}, {figC}}]

Regards,

Piotr


Alexei BOULBITCH, Dr., habil.
IEE S.A.
ZAE Weiergewan,
11, rue Edmond Reuter,
L-5326 Contern, LUXEMBOURG

Office phone :  +352-2454-2566
Office fax:       +352-2454-3566
mobile phone:  +49 151 52 40 66 44

e-mail: alexei.boulbitch at iee.lu






  • Prev by Date: Re: Differencing two equations
  • Next by Date: Re: Help with "recession bar" graph
  • Previous by thread: Re: problems with plots aligning
  • Next by thread: Re: Win7 "not responding"; WinXP no problem w/ my Manipulate