2D vector plot from three Euler angles
Mostra commenti meno recenti
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 Commenti
KSSV
il 24 Giu 2021
You want each vector to be of same length?
Abhishek Saini
il 24 Giu 2021
Risposte (1)
KSSV
il 24 Giu 2021
u = cos(theta) ;
v = sin(theta) ;
quiver(x,y,u,v)
1 Commento
Abhishek Saini
il 24 Giu 2021
Categorie
Scopri di più su Vector Fields in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!