Filter löschen
Filter löschen

Is there any way to create 90 degree rose plot?

24 Ansichten (letzte 30 Tage)
HyoJae Lee
HyoJae Lee am 23 Aug. 2023
Kommentiert: Leo Valon am 25 Jun. 2024 um 12:41
Hello all,
I am very beginner of creating figures in MATLAB. so, I need some help.
I want to create a 90 degree rose plot like in this image below (Sorry for bad resolution!):
Like in the figure, it looks like polar histogram or rose digram, but it shows only 0 to 90 deg.
I have no idea how to plot only this part.
Can you help me to draw like the image that I upload?
Thank you,
HyoJae.

Akzeptierte Antwort

Angelo Yeo
Angelo Yeo am 23 Aug. 2023
Bearbeitet: Angelo Yeo am 23 Aug. 2023
rng(1); % for reproduction
theta = atan2(rand(1000, 1), rand(1000, 1));
polarhistogram(theta, 30);
thetalim([0, 90])

Weitere Antworten (1)

Dyuman Joshi
Dyuman Joshi am 23 Aug. 2023
Adjust the theta limits -
%Random data
theta = atan2(rand(100000,1)-0.5,2*(rand(100000,1)-0.5));
polarhistogram(theta,25)
%Get current axes
ax=gca;
%Modify the theta limits accordingly
ax.ThetaLim = [0 90];
  2 Kommentare
HyoJae Lee
HyoJae Lee am 23 Aug. 2023
Appreciated!
It is very helpful!
Leo Valon
Leo Valon am 25 Jun. 2024 um 12:41
Helpfull

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Polar Plots finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by