Go to the first, previous, next, last section, table of contents.


omatrix_trans

omatrix_trans(A)
:: 行列 A の転置行列を求めます.
return
行列
A
行列 or リスト
[303] omatrix_trans([[a,b],[c,d]]);
[ a c ]
[ b d ]

[304] omatrix_trans([[1,2,3],[4,5,6],[7,8,9]]);
[ 1 4 7 ]
[ 2 5 8 ]
[ 3 6 9 ]


Go to the first, previous, next, last section, table of contents.