kalker/tests/matrices/transpose.kalker

6 lines
62 B
Plaintext

m = [1, 2
3, 4
5, 6]
mᵀ = [1, 3, 5
2, 4, 6]