2D vector plot from three Euler angles
Afficher commentaires plus anciens
Hi all,
I have x and y coordinates with three Euler angle(/theta, /phi,/Phi) for each location. I want to plot the vector plot to visualise the vector directions of a particular length. How can I do that in MATLAB?
2 commentaires
KSSV
le 24 Juin 2021
You want each vector to be of same length?
Abhishek Saini
le 24 Juin 2021
Réponses (1)
KSSV
le 24 Juin 2021
u = cos(theta) ;
v = sin(theta) ;
quiver(x,y,u,v)
1 commentaire
Abhishek Saini
le 24 Juin 2021
Catégories
En savoir plus sur Vector Fields 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!