MathGroup Archive 2007

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

Search the Archive

Connecting 3D graphs together

  • To: mathgroup at smc.vnet.net
  • Subject: [mg81322] Connecting 3D graphs together
  • From: michael.p.croucher at googlemail.com
  • Date: Wed, 19 Sep 2007 05:28:46 -0400 (EDT)

Hi all

Say I have 2 3d plots:

graph1 = Plot3D[Exp[-(x^2+y^2)],{x,-2,2},{y,-2,2}];
graph2 = Plot3D[x*Exp[-(x^2+y^2)],{x,-2,2},{y,-2,2}];

and I put them together in a GraphicsRow:

GraphicsRow[{graph1,graph2}]

I can select each of the 2 plots with my mouse and rotate them
independently.  Is there any way I can connect them together such that
if I click on graph2 and rotate it with my mouse then graph1 rotates
in the same way?

Best Regards,
Mike



  • Prev by Date: step into dsolve routine on step at a time
  • Next by Date: Filenames DOS-style
  • Previous by thread: Re: step into dsolve routine on step at a time
  • Next by thread: Re: Connecting 3D graphs together