Is there a way to move the r-axis tic labels in a polar plot to another theta angle?
6 ビュー (過去 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!