Polarhistogram: how to create a "stacked" polar plot?

조회 수: 12 (최근 30일)
Michael Venter
Michael Venter 2020년 2월 12일
편집: LO 2023년 5월 16일
I am looking to create the same effect that is created in a bar graph when it is "stacked" (each bar is made up of different colors). Is there a way to do this with the polarhistogram function?
Bar example( from documentation):
y = [2 2 3; 2 5 6; 2 8 9; 2 11 12];
bar(y,'stacked')

답변 (1개)

LO
LO 2023년 5월 16일
편집: LO 2023년 5월 16일
Assuming you have 3 datasets with 3 different sets of angle measurements in degrees,
the following code will plot the polarhistograms of the 3 sets in a figure subplot of your choice (just edit the XXX according to your needs. If it's a single figure plot just remove the subplot line). The "trick" is just to add the hold on AFTER the first instruction. Somehow the polar axis elements need to be created first, before using "hold on".
subplot XXX
cla
polarhistogram(deg2rad(angles_in_degrees_1),24)
hold on
polarhistogram(deg2rad(angles_in_degrees_2),24)
polarhistogram(deg2rad(angles_in_degrees_3),24)

카테고리

Help CenterFile Exchange에서 Polar Plots에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by