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

    %% Create Polar Plot with Complex Values
% Plot complex values in polar coordinates. Display markers at each
% point without a line connecting them.

Z = [2+3i 2 -1+4i 3-4i 5+2i -4-2i -2+3i -2 -3i 3i-2i];
polarplot(Z,'*')