How to change polar histogram plot border thickness?
Afficher commentaires plus anciens
I am trying to change the thickness of the arc that defines the border of a polar histogram plot. I can successfully change the thickness of the ticks using LineWidth, but I am not finding a command that allows me to alter the thickness of the border arc.
Is it possible?
Alternatively, I am also trying to draw a new arc to superimpose over the existing one, but am failing to draw the arc from 0° to 90°. It always goes from 0° to the center instead.
d=linspace(0,pi/2);
t=cos(d);
r=sin(d);
hold on;
polarplot(t,r,'LineWidth',4)
hold off;

How do I change the arc so that it goes from 0° to 90°?
I've tried setting r=1, which seems like it should fix it, but then nothing shows up at all. What am I missing?
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Histograms dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
