Re: 3D List Plots
- To: mathgroup at smc.vnet.net
- Subject: [mg15888] Re: [mg15856] 3D List Plots
- From: "Kevin J. McCann" <kevinmccann at Home.com>
- Date: Wed, 17 Feb 1999 23:33:37 -0500
- Sender: owner-wri-mathgroup at wolfram.com
You can use Show along with Graphics3D as in the example below.
Kevin
tbl=Table[{x,x,Sin[x]},{x,0,4Pi,Pi/10.}];
Show[Graphics3D[{RGBColor[1,0,0],AbsolutePointSize[5],Line[tbl]}],
Axes->Automatic];
-----Original Message-----
From: Rangachari Kidambi <rkidambi at spock.usc.edu>
To: mathgroup at smc.vnet.net
Subject: [mg15888] [mg15856] 3D List Plots
>
>Hi,
>
>How do i plot a curve joining points in 3 D [ (x1,y1,z1), (x2,y2,z2)
>etc.]. ListPlot seems to work only for 1 and 2 D; ListPlot3D produces a
>surface whereas i want a curve through the points.
>
>Thanks for any help,
>Ranga Kidambi
>
>
>