2 lines
97 B
OCaml
2 lines
97 B
OCaml
|
|
val eye= fn n => List.tabulate( n, fn i => List.tabulate( n, fn j=> if j=i then 1.0 else 0.0));
|