Re: ListPlot and ListPlot3D
- To: mathgroup at smc.vnet.net
- Subject: [mg70762] Re: ListPlot and ListPlot3D
- From: "dimitris" <dimmechan at yahoo.com>
- Date: Thu, 26 Oct 2006 02:39:18 -0400 (EDT)
- References: <ehkbq4$fum$1@smc.vnet.net>
You can also define your own function as follows
pointListPlot3D[lis_List, opts___] := Show[Graphics3D[Point /@ lis],
opts, Axes -> True]
Example of application
pointListPlot3D[Table[{n Cos[n], n Sin[n], n}, {n, 0, 100, 0.1}]]
Compare with
Needs["Graphics`Graphics3D`"]
ScatterPlot3D[Table[{n Cos[n], n Sin[n], n}, {n, 0, 100, 0.1}]]
Regards
Dimitris