定义角度和模长
如果是纯坐标的话就将横坐标与纵坐标分列两个数组,直接使用plot函数即可。
theta=[0 15 30 60 90 120 150 180 210 240 270 300 330 345].*pi/180;
dzdy=[9.6 9.5 9.7 9.9 9.8 9.6 9.5 9.6 9.7 9.9 9.8 9.6 9.5 9.5];
x=dzdy.*cos(theta);
y=dzdy.*sin(theta);
for i=1:1:13
h=[x(i),x(i+1)];
z=[y(i),y(i+1)];
plot(h,z);
hold on
end
last=[x(14),x(1)];
first=[y(14),y(1)];
plot(last,first);
hold on