How do I plot such function in matplotlib? It a function that returns a point (x,y,z):
def f(t):
return (t, t+4, t)
This is supposed to describe a line in 3D space
Splitting them up into three separate component functions is not acceptable for me.