1

I'm looking for a way to plot this parametric equation on cylindrical coordinates.

r = e^t
theta = t+1
z = e^2t

Any help would be appreciated

1 Answers1

4

I created this function to convert from cylindrical to cartesian:

thing[r_, theta_, z_] := {r Cos[theta], r Sin[theta], z}

Then use ParametricPlot3D

ParametricPlot3D[thing[Exp[t], t + 1, Exp[2 t]], {t, 0, 1}]

enter image description here

Ivan
  • 2,207
  • 15
  • 25
  • 1
    your answer was what i was looking for, I have no problem plotting parametric equations on spherical coordinates but somehow this eluded me. Thanks you very much – user3196215 Apr 02 '15 at 23:08