您好 我有一个数据 二维 为按极坐标格式排列的散点 想用MATLAB画图 应该怎样实现呢 需要转换坐标吗
该数据为460*360的散点也就是360个方位角460个步长每个方位角每个步长上有一个数据其实就是一个雷达的回波请问怎么样利用我的这些数据画出图来呢...
该数据为460*360的散点 也就是360个方位角 460个步长 每个方位角每个步长上有一个数据 其实就是一个雷达的回波 请问 怎么样利用我的这些数据画出图来呢
展开
展开全部
check if you can play with the following code:
r=0:5:460;
t=0:0.01:2*pi;
figure(1);
for i=0:1:360;
hold off
plot(0,0,'.','markersize',5);
hold on
plot(max(r)*cos(t),max(r)*sin(t),'g-.','markersize',1,'linewidth',1);
plot(max(r)/2*cos(t),max(r)/2*sin(t),'g-.','markersize',1,'linewidth',1);
axis([-1,1,-1,1]*max(r)*11/10,'square');
whitebg([0 0 0])
plot(r*cos(i/360*2*pi),r*sin(i/360*2*pi),'.','color','g','markersize',1);
pause(0.02);
drawnow();
end;
r=0:5:460;
t=0:0.01:2*pi;
figure(1);
for i=0:1:360;
hold off
plot(0,0,'.','markersize',5);
hold on
plot(max(r)*cos(t),max(r)*sin(t),'g-.','markersize',1,'linewidth',1);
plot(max(r)/2*cos(t),max(r)/2*sin(t),'g-.','markersize',1,'linewidth',1);
axis([-1,1,-1,1]*max(r)*11/10,'square');
whitebg([0 0 0])
plot(r*cos(i/360*2*pi),r*sin(i/360*2*pi),'.','color','g','markersize',1);
pause(0.02);
drawnow();
end;
追问
谢谢您的回答 可是程序并没有用到我得数据文件啊 最好是能把这些离散的点在极坐标下画出来
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询