Method code for $math.matrix_add()

[Turn on line numbering]
arg m1, m2;
var i;

return map i in [1 .. m1.length()] to (.add(m1[i], m2[i]));

["// Various Contributors, including: Miroslav Silovic, Bruce Mitchner, Nolan, Sean R. Lynch, Technobunny", "// Created 19-Oct-1996 as a part of ColdCore, see: @help Credit"]

the Cold Dark