i have excel sheet with 1 column as phase angles, can anyone help me how do i plot those angles on polar plot?

2 views (last 30 days)
i imported the data in MATLAB, but cant find a proper way to plot them on the polar plot.
  2 Comments
L K
L K on 18 Nov 2016
well ya , thats right , you need the radius,i can take radius may be of 4 say,
now can any one help ? cant figure out how do i plot each angle on it from the sheet

Sign in to comment.

Accepted Answer

KSSV
KSSV on 18 Nov 2016
Edited: KSSV on 18 Nov 2016
Let theta be your angles in radians read from excel file.
rho = 4*ones(size(theta)) ;
figure
polar(theta,rho,'-o')
  2 Comments
L K
L K on 18 Nov 2016
do you know how to connect these point from origin(from origin to each point) ,,instead of connecting them from point to point?
dpb
dpb on 18 Nov 2016
Edited: dpb on 18 Nov 2016
doc compass
Didn't you look at doc's for polar or just for graphics in general? It ( compass that is) is in "See Also" list

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!