RE: Combine 2d and 3d plots that has different ranges
- To: mathgroup at smc.vnet.net
- Subject: [mg73986] RE: [mg73812] Combine 2d and 3d plots that has different ranges
- From: Alan Notis <spiraltooth at optonline.net>
- Date: Sun, 4 Mar 2007 00:00:18 -0500 (EST)
Hi Serdal, You need to scale one of the images. Use a variable such as B. For instance for the smaller one: ParametricPlot3D[{X,Y,Z},{U,0,1},{t,0,2pi}] would become: B=100 ParametricPlot3D[{B*X,B*Y,B*Z},{U,0,1},{t,0,2pi}] Then you would play with B until your graphic looked right. Alan -----Original Message----- From: serdal kirmizialtin [mailto:serdal at mail.utexas.edu] Sent: Thursday, March 01, 2007 6:12 AM To: mathgroup at smc.vnet.net Subject: [mg73986] [mg73812] Combine 2d and 3d plots that has different ranges 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