1 % Updating a rotation matrix
3 %
Output: updated rotation matrix
12 delt = 0.1; % Artificial
time increment
13 % Skew symmetric matrix corresponding to angular
velocity 14 skew = [0 -ang_vel(3) ang_vel(2); ang_vel(3) 0 -ang_vel(1);
15 -ang_vel(2) ang_vel(1) 0];
16 rot_new = (eye(3) + delt *
skew) * rot_old; % Update
Algorithm Minimization over and Arc lengths created
Updating a rotation matrix Input
Artificial time increment Skew symmetric matrix corresponding to angular velocity skew
Updating a rotation matrix angular velocity vector Sangyoon Lee function rot_new
Updating a rotation matrix angular velocity vector modified
Updating a rotation matrix angular velocity vector Output