2D vector plot from three Euler angles
Show older comments
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 Comments
KSSV
on 24 Jun 2021
You want each vector to be of same length?
Abhishek Saini
on 24 Jun 2021
Answers (1)
KSSV
on 24 Jun 2021
u = cos(theta) ;
v = sin(theta) ;
quiver(x,y,u,v)
1 Comment
Abhishek Saini
on 24 Jun 2021
Categories
Find more on Vector Fields 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!