Polar coordinate plot in Matlab

I have multiple theta and rho stored as matrices in variable out. I want to plot all of them using polar function in Matlab R2015b.
I'm new to Matlab and so far I did this :
figure()
subplot(1,3,1)
polar(out(1),out(2),'*')
subplot(1,3,2)
polar(out(3),out(4),'*')
subplot(1,3,3)
polar(out(5),out(6),'*')
I've two questions:
How can I combine them into a single polar plot, i.e one figure instead of three with '*' position intact ?
How can I remove the lower part of polar plot so that I can have a semicircle instead of full plot ? Is it possible to customize polar plot labels like removing the degree labels ?

5 件のコメント

Walter Roberson
Walter Roberson 2020 年 1 月 27 日
Can you switch to polarplot() instead?
darova
darova 2020 年 1 月 27 日
What about
polar(out(1:2:5), out(2:2:6))
rohit
rohit 2020 年 1 月 27 日
@Walter, polarplot() is not available in R2015b.
@darova, it worked. Any idea about second question?
darova
darova 2020 年 1 月 27 日
I don't understand. What do you want to remove?
rohit
rohit 2020 年 1 月 27 日
labels in the figure like 0, 30, 60 .... 330

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

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangePolar Plots についてさらに検索

製品

質問済み:

2020 年 1 月 27 日

コメント済み:

2020 年 1 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by