My question is simply...
I have the plot of one parabola. I made it using:
t = -20:0.1:20;
plot3(0,t,-t.^2);
Now i want to plot one vector with the origin in some point [x0 y0 z0]
and the end in one point of the parabola. After that, i want to move the end of the vector along the line that describe the parabola with the origin always fixed.
Some suggestion?