MathGroup Archive 2007

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

Search the Archive

Re: Combine 2d and 3d plots that has different ranges

  • To: mathgroup at smc.vnet.net
  • Subject: [mg73847] Re: Combine 2d and 3d plots that has different ranges
  • From: dh <dh at metrohm.ch>
  • Date: Fri, 2 Mar 2007 06:23:58 -0500 (EST)
  • References: <es6ccq$rep$1@smc.vnet.net>


Hi Serdal,

GraphicsArray works fine. here is an example:

g1 = Plot[Sin[x], {x, 0, 1}];

g2 = Plot3D[100 Sin[x], {x, 0, 100}, {y, 0, 100}];

Show[GraphicsArray[{{g1}, {g2}}]]

Daniel



serdal kirmizialtin wrote:

> Hi All,

> Does anybody help me to plot one 3D and one 2D plots to a same column.

> I tried GraphicsArray but the ranges of one is two orders of magnitude bigg=

> er than the other plot so the smaller one looks like a point.

> 

> How can I plot them together but at the same size also ?

> 

> Many Thanks

> 




  • Prev by Date: The Mathematica equivalent of Cons (as in Lisp)?
  • Next by Date: Parse results from Solve
  • Previous by thread: Combine 2d and 3d plots that has different ranges
  • Next by thread: RE: Combine 2d and 3d plots that has different ranges