j1comp.m

来自「it is a matlab file foe develop SLAM loc」· M 代码 · 共 19 行

M
19
字号
%J1COMP First Jacobian of the compound operator.%   J = J1COMP(XI,XJ) returns the Jacobian matrix of the 2D composition%   of XI and XJ derived with respect to the first operand. All X's are%   3x1-vectors, J is a 3x3 matrix.%%   See also J2COMP, JINV, COMPOUND, ICOMPOUND.% v.1.0, 30.11.02, Kai Arras, ASL-EPFLfunction J1 = j1comp(xij,xjk);j13 = -xjk(1)*sin(xij(3)) - xjk(2)*cos(xij(3));j23 =  xjk(1)*cos(xij(3)) - xjk(2)*sin(xij(3));J1 = [1, 0, j13;      0, 1, j23;      0, 0,  1];

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?