Change axis in polar plots in matlab to radians
问题 So matlab rightfully uses radians for trigonometric functions and in the actual plotting of polar plots. However annoyingly it puts the angular axis in degrees, is there any way to change this? 回答1: The text objects representing angular values are created by the polar function in the following section of its code (Matlab R2010b): % annotate spokes in degrees rt = 1.1 * rmax; for i = 1 : length(th) text(rt * cst(i), rt * snt(i), int2str(i * 30),... 'HorizontalAlignment', 'center', ...