Effacer les filtres
Effacer les filtres

Is there any way to create 90 degree rose plot?

21 vues (au cours des 30 derniers jours)
HyoJae Lee
HyoJae Lee le 23 Août 2023
Commenté : Leo Valon le 25 Juin 2024 à 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.

Réponse acceptée

Angelo Yeo
Angelo Yeo le 23 Août 2023
Modifié(e) : Angelo Yeo le 23 Août 2023
rng(1); % for reproduction
theta = atan2(rand(1000, 1), rand(1000, 1));
polarhistogram(theta, 30);
thetalim([0, 90])
  2 commentaires
HyoJae Lee
HyoJae Lee le 23 Août 2023
Appreciated!
Leo Valon
Leo Valon le 25 Juin 2024 à 12:41
nice!

Connectez-vous pour commenter.

Plus de réponses (1)

Dyuman Joshi
Dyuman Joshi le 23 Août 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 commentaires
HyoJae Lee
HyoJae Lee le 23 Août 2023
Appreciated!
It is very helpful!
Leo Valon
Leo Valon le 25 Juin 2024 à 12:41
Helpfull

Connectez-vous pour commenter.

Catégories

En savoir plus sur Polar Plots dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by