📄 show.m
字号:
plot(beacon(:,1), beacon(:,2), 'k*');
if ~exist('showstart'), showstart=200;, end
% blue ground truth
% green dead reckoning
% red estimate
hold on
plot(zz(showstart:end,2), zz(showstart:end,3), 'r');
%plot(zz(:,5), zz(:,6), 'g');
plot(zz(:,7), zz(:,8), 'b');
axis equal
grid
%legend('beacons', 'estimate', 'dr', 'truth');
legend('beacons', 'estimate', 'dr');
xlabel('x position (m)')
ylabel('y position (m)')
hold off
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -