LU decomposition: Difference between revisions

Updated D entry
(Updated D entry)
Line 719:
immutable n = m.length;
auto id = iota(n)
.map!((in j) => n.iota.map!(i => cast(T)(i == j)).array)
.array;