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

    %% Create Polar Plot
% Plot a line in polar coordinates.

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