Re: 3D data graphing
- To: mathgroup at smc.vnet.net
- Subject: [mg16009] Re: 3D data graphing
- From: Joerg Schlichtmann <joerg.schlichtmann at ruhr-uni-bochum.de>
- Date: Sat, 20 Feb 1999 02:52:02 -0500
- Organization: Ruhr-Universitaet Bochum, Rechenzentrum
- References: <7aj6e6$i1g@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Jason Donald schrieb: > > I have a large number of 3D data in (x, y, z) put in a list using > ReadList["file", Table[Number, {3}]] on a large data file. How do I > turn this into a graph plotting of the 3D data? Thanks > > Jason Donald Is this right for you? In[68]:= <<Graphics`Graphics3D` In[92]:= L=Table[{i,2 ,3 i},{i,1,3}] Out[92]= {{1,2,3},{2,2,6},{3,2,9}} In[90]:= ScatterPlot3D[L,PlotStyle->PointSize[0.05],AxesLabel->{x,y,z}] It might miss the point... Joerg