Re: ScatterPlot3D/Plot3D
- To: mathgroup at smc.vnet.net
- Subject: [mg28676] Re: [mg28669] ScatterPlot3D/Plot3D
- From: BobHanlon at aol.com
- Date: Tue, 8 May 2001 02:51:13 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Needs["Graphics`Graphics3D`"]; lpts=Table[{(t = 10*Pi*Random[])* Cos[t], t * Sin[t], t}, {1000}]; ScatterPlot3D[lpts, PlotStyle -> Hue[0], ViewPoint->{2.75, 1.75, 1.25}]; Bob Hanlon In a message dated 2001/5/6 1:15:05 AM, pl at plindsay.co.uk writes: >I've got ~ 10,000 coordinates (x, y, z) in a text file. The coordinates >are not linearly spaced and I want to see how they look on a 3D plot. > >I'm struggling a bit with the syntax, book 4 is remarkaby unhelpful about >scatterplot3d. >