www.gusucode.com > graphics 案例源码程序 matlab代码 > graphics/IncrementThetaAxisValuesBy15DegreesExample.m

    %% Increment theta-Axis Values by 15 Degrees
% Display tick marks along the _theta_-axis every 15 degrees.

theta = 0:0.01:2*pi;
rho = sin(2*theta).*cos(2*theta);
polarplot(theta,rho)
thetaticks(0:15:360)