How to change polar histogram plot border thickness?
이전 댓글 표시
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?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
