用matlab画饼状图和相量图

用matlab画饼状图和相量图

subplot(1,2,1);
pie([2347,1827,2043,3025]);                                        %pie表示画饼状图
title('pie chart');
legend('quarter 1','quarter 2','quarter 3','quarter 4');     %图形标注
subplot(1,2,2);
compass([7+2.9i,2-3i,-1.5-6i]);                                      %compass表示画相量图
title('phrasor diagram')

效果如下:
用matlab画饼状图和相量图_第1张图片

你可能感兴趣的:(用matlab画饼状图和相量图)