Original Post
Hi! I have a 3x3 rotation matrix 'R' which I obtain by solving the following system: A' = R*A where A and A' are 3xn matrices representing corresponding sets of points that are at unit distance from the origin. By inspection, the matrix R seems correct. I am dealing with small angles, so R is close to identity. What I need is to find the Angular Velocity (i,j,k) that correspond to this rotation matrix. I tried to extract the euler angles (with yaw/pitch/roll convention) directly from the matrix, but I seems to be stuck with numerical problems because of the small angles. Anyone can suggest a different approach? Any help is appreciated, thanks!