MathGroup Archive 2011

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

Search the Archive

Re: plotting a curve in 3D from data

  • To: mathgroup at smc.vnet.net
  • Subject: [mg116322] Re: plotting a curve in 3D from data
  • From: David Skulsky <edskulsky at gmail.com>
  • Date: Fri, 11 Feb 2011 04:13:44 -0500 (EST)
  • Reply-to: comp.soft-sys.math.mathematica at googlegroups.com

I'd be surprised if there wasn't a more elegant way to do what you ask, but you can always use primitives:

Graphics3D[ Line[Table[{t, Cos[t + Pi/2], Sin[t + Pi/2]}, {t, 0, 5 Pi, .2}]]]

David


  • Prev by Date: Re: Sorting nested lists with strings
  • Next by Date: Re: list manipulation
  • Previous by thread: plotting a curve in 3D from data
  • Next by thread: Re: plotting a curve in 3D from data