Convert a matrix so it can be multiplied on the right side, instead of the left

845 Views Asked by At

Sometimes I come across examples of geometric transformations that multiply the transformation matrix on the left side of the vector and sometimes on the right.

How do you modify a matrix so that when multiplied on the opposite side it will yield the same result?

1

There are 1 best solutions below

1
On BEST ANSWER

Perhaps you're thinking about $(Ax)^T=x^TA^T$, where $^T$ denotes transpose.