Transpose コマンド

Transpose( <行列> )

与えられた行列を転置する.

Transpose({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}) 出力:行列 \(\begin{pmatrix}1&4&7\\ 2&5&8\\ 3&6&9\end{pmatrix}\).

CAS での書式

Transpose( <行列> )

与えられた行列を転置する.

Transpose({{a, b}, {c, d}}) 出力:行列\(\begin{pmatrix}a&c\\b&d\end{pmatrix}\).