I'm getting stuck on multiplying matrices together and cannot figure out for the life of me where I'm going wrong.
I'm working on some robotics and reading through a textbook which gives the following example of matrices:
This gives me a transformation matrix for each joint in a robot, which then gets multiplied together to give a rotational matrix for all 3 joints together.
When actually doing this multiplication myself, I always come up with the same incorrect matrix.
I start by multiplying A4 * A5 which I get matrix A45 as:
I then multiply A45 x A6 and get this:
R12, R21 and R22 have signs that do not match the example.
To multiply, I'm summing the product of each element in a row for the first matrix by each element in a column for the second matrix:
I feel like I'm doing it right and it just doesn't make sense to me how I'm getting different sign values. Can anyone spot where I'm going wrong?




