How to create a polar plot?

18 ビュー (過去 30 日間)
Susan
Susan 2022 年 11 月 7 日
コメント済み: Susan 2022 年 11 月 7 日
Hi All,
I have a signal (a complex tall vector) and I'd like to creat polar plots of it with a line connecting points that are adjacent in time.
the signal is attached and any thoughts on that would be greatly appreciated.
This is what I did so far, but seems something is wrong
x = real(S);
y = imag(S);
rho = sqrt(x.^2+y.^2)
theta = atan(y./x)
polarplot(theta, rho)
and I got this
I don't underestand why is everything in the right half plane.

採用された回答

David Hill
David Hill 2022 年 11 月 7 日
load S
x = real(S);
y = imag(S);
rho = sqrt(x.^2+y.^2);
theta = atan2(y,x);%use atan2 (4 quadrant)
polarscatter(theta, rho,'filled','SizeData',10);%I assume you want a scatter plot
  1 件のコメント
Susan
Susan 2022 年 11 月 7 日
Cool! thank you so much for your help!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by