show.m
来自「% % set some variables in the workspace」· M 代码 · 共 19 行
M
19 行
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 + =
减小字号Ctrl + -
显示快捷键?