Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
i imported the data in MATLAB, but cant find a proper way to plot them on the polar plot.
  2 commentaires
dpb
dpb le 18 Nov 2016
Well, you're missing a radius vector to go along with the angles???
L K
L K le 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

Connectez-vous pour commenter.

Réponse acceptée

KSSV
KSSV le 18 Nov 2016
Modifié(e) : KSSV le 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 commentaires
L K
L K le 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 le 18 Nov 2016
Modifié(e) : dpb le 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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by