RosettaCodeData/Task/Identity-matrix/J/identity-matrix.j

13 lines
253 B
Text
Raw Permalink Normal View History

2024-10-16 18:07:41 -07:00
=i.4 NB. create an Identity matrix of size 4
2023-07-01 11:58:00 -04:00
1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1
2024-10-16 18:07:41 -07:00
Id=: =@i. NB. define as a verb with a user-defined name
Id 5 NB. create an Identity matrix of size 5
2023-07-01 11:58:00 -04:00
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