I never got introduced to how, formally, indexing of elements forms a matrix – I suppose it works via mapping of ordered pairs. Now, dealing with transposed matrices, I am slightly confused:
Let $A=(a_{ij})_{i=1:m,j=1:n}$ be any matrix. Now, I have two definitions of the transpose $A^t$:
1) $A^{t,1} := (a_{ji})_{i=1:m, j=1:n}$
2) $A^{t,2} := (a_{ij})_{j=1:n, i=1:m}$
I get the first: When pointing on the second entry of the third row of $A^{t,1}$ the first index – $j$ in my presentation – is $3$ and the second, $i$, is $2$, that is, I get $a_{23}$, the third entry in the second row of $A$. That is how the transpose should work.
However, I cannot work with the second. How does the order in the subscript affect the matrix? In any way that I could imagine the first definition would not make sense then and produce $A$? Whats the right way to define the transpose?
Thanks in advance.