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

2 次查看(过去 30 天)
i imported the data in MATLAB, but cant find a proper way to plot them on the polar plot.

采纳的回答

KSSV
KSSV 2016-11-18
编辑:KSSV 2016-11-18
Let theta be your angles in radians read from excel file.
rho = 4*ones(size(theta)) ;
figure
polar(theta,rho,'-o')
  2 个评论
L K
L K 2016-11-18
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 2016-11-18
编辑:dpb 2016-11-18
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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Polar Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by