How to remove extra labels from polarplot?
11 ビュー (過去 30 日間)
古いコメントを表示
Hello
How do i remove the 0.2,0.4 etc labels in this polarplot. Also, I want to rotate the plot so that 90 degrees point is where the zero degree is right now.![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1300875/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1300875/image.jpeg)
1 件のコメント
Askic V
2023 年 2 月 20 日
Please have a look at this thread:
https://www.mathworks.com/matlabcentral/answers/385797-how-do-you-turn-off-theta-and-radius-labels-in-a-polar-plot
採用された回答
Jinal
2023 年 2 月 20 日
Hey Mansi,
I understand that you want to remove the RTicklabels from you plot and rotate it by 90 degrees. You can achieve this by using polaraxes properties.
Assuming that the name of yor polaraxes object is ‘pax ’, the following commands can remove the extra labels and rotate the plot.
pax.RTickLabel={};
pax.ThetaZeroLocation=”top”;
You can refer the ‘Ticks’ section of the following page for more information https://www.mathworks.com/help/matlab/ref/matlab.graphics.axis.polaraxes-properties.html
Hope this helps.
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!