2D vector plot from three Euler angles
Ältere Kommentare anzeigen
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 Kommentare
KSSV
am 24 Jun. 2021
You want each vector to be of same length?
Abhishek Saini
am 24 Jun. 2021
Antworten (1)
KSSV
am 24 Jun. 2021
u = cos(theta) ;
v = sin(theta) ;
quiver(x,y,u,v)
1 Kommentar
Abhishek Saini
am 24 Jun. 2021
Kategorien
Mehr zu Vector Fields finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!