How to build the next three-dimensional curve (as an example) using Sympy? I know that I simply create an array for t and do it in Matplotlib, but I really do not want to draw this curve, but to learn how to draw and draw curves symbolically.
alpha (t) = (cos (t), sin (t), t)
from sympy import *
t = symbols('t')
alpha = [cos(t), sin(t), t]
I tried to use the plot method in various ways, but this only led to three separate 1D curves or errors.
source
share