You can label polar axes with text objects. I find the following positioning works well as a default... you may need to play around with coordinates, horizontal and vertical alignment, and rotation to find a combination that works best for you:
hax = polaraxes('RLim', [0 rmax]);
text(0, rmax/2, 'R Axis Label', 'horiz', 'center', 'vert', 'top', 'rotation', 0);
text(pi/4, rmax*1.2, 'Theta Axis Label', 'horiz', 'center', 'rotation', -45);
0 Comments
Sign in to comment.