kalker/tests/matrices/transpose.kalker

6 lines
62 B
Plaintext
Raw Normal View History

m = [1, 2
3, 4
5, 6]
2022-01-19 23:46:36 +01:00
mᵀ = [1, 3, 5
2, 4, 6]