MathGroup Archive 2009

[Date Index] [Thread Index] [Author Index]

Search the Archive

ListPointPlot3D - how to join points

  • To: mathgroup at smc.vnet.net
  • Subject: [mg105338] ListPointPlot3D - how to join points
  • From: Serych Jakub <Serych at panska.cz>
  • Date: Sat, 28 Nov 2009 01:08:16 -0500 (EST)

Dear community,
I need to draw 3D curve from the points in the table, something what in 2D 
is very simply realizable by ListPlot with use of the Joined and InterpolationOrder options. But ListPlot3D function is drawing curved plains to me and I cannot join the points in  ListPointPlot3D function.
Does anybody know, how to do it? Here are some simple test data to let you see what I'm talking about:

my2Dtable = {{0, 0}, {1, 1}, {2, 1}, {3, 2}, {4, 5}, {5, 8}, {6, 5}, {7, 4}};
ListPlot[my2Dtable, Joined -> True, InterpolationOrder -> 2]
my3Dtable = {{0, 0, 0}, {1, 1, 1}, {2, 1, 2}, {3, 4, 3}, {5, 6, 4}, {3, 4, 5}, {2, 1, 6}, {7, 7, 7}};
ListPointPlot3D[my3Dtable]
ListPlot3D[my3Dtable]

Thanks in advance for any help

Jakub


  • Prev by Date: Re: How to make {f,g}[a,b,c] to become {{f[a],g[a]},{f[b],g[b]},{f[c],g[c]}}
  • Next by Date: Re: How to make {f,g}[a,b,c] to become {{f[a],g[a]},{f[b],g[b]},{f[c],g[c]}}
  • Previous by thread: DXF export success
  • Next by thread: Re: ListPointPlot3D - how to join points