Matrix transposition: Difference between revisions

APL solution
m (→‎{{header|REXX}}: added comments, unrolled some DO loops, changed indentation, added whitespace. -- ~~~~)
(APL solution)
Line 151:
( 1.00, 16.00, 81.00,256.00,625.00));
</pre>
 
=={{header|APL}}==
<lang apl>
3 3⍴⍳10
1 2 3
4 5 6
7 8 9
⍉ 3 3⍴⍳10
1 4 7
2 5 8
3 6 9
</lang>
 
=={{header|AutoHotkey}}==
Anonymous user