Plotting tangent vector on helix shaped plot
Show older comments
I have a plot of a helix, the position of the helix is given by:
omega = 0.1;
angle = omega*t;
radius = 1;
x = radius*cos(angle);
y = radius*sin(angle);
z = vz.*t + 0;
This works & yields a plot as seen below.

What I would like to do, is plot the tangent vector along this plot, quiver3 does not seem to work for this. What would you suggest I do to make this work? Thanks.
My full code is attached.
Accepted Answer
More Answers (0)
Categories
Find more on Interpolation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
