[[Matrix]]에서 행, 열을 바꾸기 http://mathworld.wolfram.com/Transpose.html 전치행렬공식 {{{#!latex \math{(AB)^{T} = B^{T}A^{T} }}} [[Python]]에서는 다음처럼쓰면 편하다. {{{#!python >>> def transpose(array): ... return zip(*array) ... >>> transpose([(1,2,3), (4,5,6)]) [(1, 4), (2, 5), (3, 6)] }}}