RosettaCodeData/Task/Identity-matrix/J/identity-matrix.j
2023-07-01 13:44:08 -04:00

12 lines
265 B
Text

= i. 4 NB. create an Identity matrix of size 4
1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1
makeI=: =@i. NB. define as a verb with a user-defined name
makeI 5 NB. create an Identity matrix of size 5
1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 1 0
0 0 0 0 1