Jump to content

Transpose: Difference between revisions

4 bytes removed ,  2 years ago
no edit summary
(Created page with "'''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. == E...")
 
No edit summary
Line 1:
{{primitive}}
'''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")
== Examples ==
("ace";"bdf")
 
+(`a`b`c;`d)
+("ab";"cd";"ef") -> ("ace";"bdf")
+(`a`b`c;`d) -> (`a`d;`b`d;`c`d)
Cookies help us deliver our services. By using our services, you agree to our use of cookies.