Re: ParametricPlot 3D table
- To: mathgroup at smc.vnet.net
- Subject: [mg47456] Re: ParametricPlot 3D table
- From: bobhanlon at aol.com (Bob Hanlon)
- Date: Tue, 13 Apr 2004 06:26:09 -0400 (EDT)
- References: <c5dhvb$nrn$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
It echoes because the command ListParametricPlot3D is undefined. However, since you know the functions it is unnecessary. ParametricPlot3D[{u+v,u-v,u*v/10},{u,0,4.5},{v,0,3.5}]; data= Table[{u,v,u+v,u-v,u*v/10},{u,0,4.5,.5},{v,0,3.5,.5}] Bob Hanlon In article <c5dhvb$nrn$1 at smc.vnet.net>, mathma18 at hotmail.com (Narasimham G.L.) wrote: << I need to generate a data table and see ParametricPlot3D (or get table after seeing plot, either way the order does not matter). Just a (u,v,x,y,z) table is adequate. Taking cue from ListPlot for Plot3D I tried: data = Table[N[u+v,u-v,u v/10], {u, 0, 4.5}, {v, 0, 3.5},PlotPoints->{20,20}]; ListParametricPlot3D[data] but echoes inactive. Please help.