Transpose#

inline Matrix33 Transpose(const Matrix33 &a)#

Computes the transpose of a matrix.

Exchanges rows and columns: result(i,j) = a(j,i)

Parameters:

a[in] Matrix to transpose

Returns:

Transposed matrix