
Originally Posted by
richard_c
Code:
[ 1 3 5 -9]
[ -11 7 -18 -33]
[ 2 4 22 54]
[ 14 18 37 21]
How would I start by transposing the above matrix?
You flip it about the leading diagonal (or rows become columns):
Code:
[ 1 -11 2 14]
[ 3 7 4 18]
[ 5 -18 22 37]
[ -9 -33 54 21]
RonL