Loading [MathJax]/jax/output/HTML-CSS/jax.js

Matrix transpose

Function

context X
context n,kโˆˆN
definition โ‹… T:Matrix(n,k,X)โ†’Matrix(k,n,X)
postulate (AT)ij=Aji

Discussion

Code
mm = {{a, b, c}, {x, y, z}};
tm = Transpose[mm];

mm // MatrixForm
tm // MatrixForm
--$ idris -p contrib
--$ :l this_module.idr
import Data.Matrix
 
mm : Matrix 3 2 Nat
mm = [[3,5],[1,5],[2,1]]
 
tm : Matrix 2 3 Nat
tm = transpose mm

Reference

Wikipedia: Transpose


Context

Link to graph
Log In
Improvements of the human condition