calcinnovation.m
来自「it is a matlab file foe develop SLAM loc」· M 代码 · 共 14 行
M
14 行
%CALCINNOVATION Calculate innovation between two point features.% NU = CALCINNOVATION(P1,P2) returns the difference of the state vectors% of point features P1 and P2. Note that for features with angles this% is the place to unwrap angle differences.%% See also POINTFEATURE.% v.1.0, Nov. 2003, Kai Arras, CAS-KTHfunction nu = calcinnovation(p1,p2);% Take difference. Trivial for point features as there are no anglesnu = p1.x - p2.x;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?