Transpose: Difference between revisions

From The K Language Wiki
Content added Content deleted
No edit summary
No edit summary
Line 3: Line 3:


+("ab";"cd";"ef")
+("ab";"cd";"ef")
("ace";"bdf")
("ace"
"bdf")

+(`a`b`c;`d)
+(`a`b`c;`d)
(`a`d;`b`d;`c`d)
(`a`d
`b`d
`c`d)

Revision as of 16:05, 6 July 2021

Transpose
{{{1}}}

Transpose (a.k.a. flip) swaps the leading two axes of a 2+ dimensional rectangular array. Dialects differ in their treatment atoms, lists, and ragged arrays.

 +("ab";"cd";"ef")
("ace"
 "bdf")
 +(`a`b`c;`d)
(`a`d
 `b`d
 `c`d)