Re: how do I plot many points?
- To: mathgroup at smc.vnet.net
- Subject: [mg119121] Re: how do I plot many points?
- From: Dan <dflatin at rcn.com>
- Date: Sun, 22 May 2011 06:56:03 -0400 (EDT)
- References: <ir85f2$bkd$1@smc.vnet.net>
On May 21, 6:51 am, joe <joseph... at yahoo.com> wrote: > I have about 80,000 3d points to plot. > for example one point would be (x1,y1,z1) > how do i do this? > I am completely confused, and do not know how to use mathematica. > > here is me making an attempt if you would like to see. > > this was my input > > a = {{2, 4, 5}, {3, 7, 9}, {6, 4, 5}, {5, 7, 5} , {7, 2, 1}} > > ListPointPlot3D[a] > > and this was the output > > {{2, 4, 5}, {3, 7, 9}, {6, 4, 5}, {5, 7, 5}, {7, 2, 1}} > > ListPointPlot3D[{{2, 4, 5}, {3, 7, 9}, {6, 4, 5}, {5, 7, 5}, {7, 2, 1}}] > > I see no graph Are you sure you did not enter ListPointPlot3D[{{2, 4, 5}, {3, 7, 9}, {6, 4, 5}, {5, 7, 5}, {7, 2, 1}}]; A semicolon will suppress the output. -- Dan