Is there a way to move the r-axis tic labels in a polar plot to another theta angle?

조회 수: 9 (최근 30일)
I have some results that are plotted on my polar plot, but the r-axis labels are interfering with some of the data. Can I move the r-axis tic labels to another theta rotation?

채택된 답변

Steven Lord
Steven Lord 2017년 2월 1일
Use the polaraxes property RAxisLocation.
t = 0 : .01 : 2*pi;
h = polarplot(t, sin(2*t).*cos(2*t), '--r');
ax = ancestor(h, 'polaraxes');
ax.RAxisLocation = 180;

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by