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

1 回表示 (過去 30 日間)
i imported the data in MATLAB, but cant find a proper way to plot them on the polar plot.
  2 件のコメント
dpb
dpb 2016 年 11 月 18 日
Well, you're missing a radius vector to go along with the angles???
L K
L K 2016 年 11 月 18 日
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

サインインしてコメントする。

採用された回答

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 Center および File ExchangePolar Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by