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

    %% Specify Line Color for Polar Plot
% Create a polar plot using a red line with circle markers.

theta = linspace(0,2*pi,25);
rho = 2*theta;
polarplot(theta,rho,'r-o')