MathGroup Archive 2003

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

Search the Archive

Re: plot1 and plot2

  • To: mathgroup at smc.vnet.net
  • Subject: [mg42338] Re: plot1 and plot2
  • From: "Mingjie Xu" <mxu1 at uiuc.edu>
  • Date: Tue, 1 Jul 2003 08:45:44 -0400 (EDT)
  • Organization: University of Illinois at Urbana-Champaign
  • References: <bdjft8$8cp$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

first of all, use package << Graphics`Graphics3D`
secondly, date1 and data2 should be a list of 3-D points. change to
data1={{{0.0,0.0,0.0},{1.0,0.0,1.0},{2.0,0.0,2.0},{3.0,3.0,3.0}}};
Finally, the data set doesn't contain enough points to generate 3-D. try to
put in a more sensible data


"Nakhova Irina" <I.Nakhova at gcal.ac.uk> wrote in message
news:bdjft8$8cp$1 at smc.vnet.net...
> Hi,
> I need to show plot1 and plot2, which were built by the following way :
> Needs["ExtendGraphics`SurfaceGraphics3D`"]
> data1={{0.0,0.0,0.0},{1.0,0.0,1.0},{2.0,0.0,2.0},{3.0,3.0,3.0}};
> data2={{0.0,0.0,0.0},{1.0,2.0,1.0},{2.0,3.0,2.0},{3.0,3.0,3.0}};
> plot1=ListSurfacePlot3D[data1]
> plot2=ListSurfacePlot3D[data2]
> on one picture, but the command Show[plot1,plot2] does not help. Could you
> help me with this problem, please?
> Irina
>
>


  • Prev by Date: Re: Plotting 3D points on 2D-contour plots with colors indicating z values
  • Next by Date: Changing the shading contrast in ListContourPlot
  • Previous by thread: RE: plot1 and plot2
  • Next by thread: RE: plot1 and plot2