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

    %% Create Scatter Chart 
% Create a scatter chart in polar coordinates.

th = pi/4:pi/4:2*pi;
r = [19 6 12 18 16 11 15 15];
polarscatter(th,r)