%%
% 读取文件数据
filename = 'E:\ProjectWorkspace\866\866data\665hangji.txt';%代码 距离 方位相对正北 时间 地址 横滚角度
TRK = importdata(filename);
filename1 = 'E:\ProjectWorkspace\866\866data\665dianji.txt';%代码 距离 方位相对正北 时间 地址 横滚角度
PLOT = importdata(filename1);
fprintf('read data end\n');
%%
figure
polar(TRK(:,2),TRK(:,1),'.b')
hold on;
polar(PLOT(:,2),PLOT(:,1),'.r')
最后数据显示出来效果