2D vector plot from three Euler angles
Mostrar comentarios más antiguos
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 comentarios
KSSV
el 24 de Jun. de 2021
You want each vector to be of same length?
Abhishek Saini
el 24 de Jun. de 2021
Respuestas (1)
KSSV
el 24 de Jun. de 2021
u = cos(theta) ;
v = sin(theta) ;
quiver(x,y,u,v)
1 comentario
Abhishek Saini
el 24 de Jun. de 2021
Categorías
Más información sobre Vector Fields en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!