How can I color an angle histogram created by the ROSE function in MATLAB?

조회 수: 2 (최근 30일)
I use the ROSE function to create an angle histogram:
theta = 2*pi*rand(1,50);
rose(theta);
In the resulting plot, the angled bars are not colored. I would like to fill the histogram with a certain color.

채택된 답변

MathWorks Support Team
MathWorks Support Team 2009년 6월 27일
You can use the FILL command to color the angle histogram. The following example the fill color is red:
theta = 2*pi*rand(1,50);
[tout, rout] = rose(theta);
polar(tout, rout);
[xout, yout] = pol2cart(tout, rout);
set(gca, 'nextplot', 'add');
fill(xout, yout, 'r');
You can substitute any colorspec or color triplet for 'r'.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Descriptive Statistics and Visualization에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by