![]() | 1 | initial version |
It seems you want to plot a curve in 3d, parametrized by t
.
The example provided in the question has problems:
e^(1/4*pi)
, e^(1/2*pi)
, e^(-1/2*pi)
real_part
functionHere is an example of plotting a parametric curve in 3d:
sage: M(t) = (t + 1, 2 * t - 1, 3 * t)
sage: parametric_plot(M, (-2, 2), color="red")
It could be adapted to the example from the question, once fixed.