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
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
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}]

Also, please remember to accept the answer, if any, that solves your problem, by clicking the checkmark sign!
– Mar 31 '15 at 18:17