2D vector plot from three Euler angles

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

You want each vector to be of same length?
Yes i want the vector length be same.

Sign in to comment.

Answers (1)

u = cos(theta) ;
v = sin(theta) ;
quiver(x,y,u,v)

1 Comment

Thanks KSSV,
As i mentioned i have three Euler angles. May be I need to convert those first to rotation matrix.

Sign in to comment.

Categories

Products

Release

R2020b

Asked:

on 24 Jun 2021

Commented:

on 24 Jun 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!