Is there a way to move the r-axis tic labels in a polar plot to another theta angle?
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Benjamin Cowen
am 1 Feb. 2017
Beantwortet: Steven Lord
am 1 Feb. 2017
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 Kommentare
Akzeptierte Antwort
Steven Lord
am 1 Feb. 2017
t = 0 : .01 : 2*pi;
h = polarplot(t, sin(2*t).*cos(2*t), '--r');
ax = ancestor(h, 'polaraxes');
ax.RAxisLocation = 180;
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Polar Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!