Matrix transposition: Difference between revisions

no edit summary
m (syntax highlighting fixup automation)
No edit summary
Line 790:
36 50 10 29
</pre>
 
 
=={{header|BQN}}==
{{trans|APL}}
If M is a matrix, ⍉M is its transpose. For example,
<syntaxhighlight lang="bqn">
3‿3⥊↕9
┌─
╵ 0 1 2
3 4 5
6 7 8
⍉3‿3⥊↕9
┌─
╵ 0 3 6
1 4 7
2 5 8
</syntaxhighlight>
 
=={{header|Burlesque}}==
3

edits