select_observations.m
来自「用EKF」· M 代码 · 共 13 行
M
13 行
function result = select_observations (observations, which)
%-------------------------------------------------------
% plots the vehicle and features, whose coordinates
% appear in features.x, with symbol.
%-------------------------------------------------------
global configuration;
[ix, iy ind] = obs_rows(which);
result.z = observations.z(ind);
result.R = observations.R(ind,ind);
result.m = length(which);
result.ground_id = observations.ground_id(which);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?