We have this matrix of 4x4:
a b c d
e f g h
1 2 3 4
5 6 7 8
By transposing the matrix we get:
a e 1 5
b f 2 6
c g 3 7
d h 4 8
My question is:
What matrix do we get by "transposing column 2 with row 4?" I need to code this, and I can do it. But firstly I need to understand the operation in itself, what does it imply/mean? I never thought of "transposing a column with a line".
Thank you. S