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?
댓글 수: 0
채택된 답변
Steven Lord
2017년 2월 1일
t = 0 : .01 : 2*pi;
h = polarplot(t, sin(2*t).*cos(2*t), '--r');
ax = ancestor(h, 'polaraxes');
ax.RAxisLocation = 180;
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Polar Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!