Matrix transposition: Difference between revisions

Content added Content deleted
(→‎{{header|J}}: simplify)
Line 416: Line 416:


=={{header|J}}==
=={{header|J}}==
Transpose is the monadic primary verb <tt>|:</tt>
Transpose is the monadic primary verb <code>|:</code>

<lang j> ]matrix=: 3 5 $ 10+ i. 15 NB. make and show example matrix
<lang j> ]matrix=: 10 + i. 3 5 NB. make and show example matrix
10 11 12 13 14
10 11 12 13 14
15 16 17 18 19
15 16 17 18 19