RosettaCodeData/Task/Identity-matrix/Clojure/identity-matrix-3.clj

3 lines
85 B
Clojure
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
=> (identity-matrix 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]]