Plotting tangent vector on helix shaped plot
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Interpolation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

