Method code for $math.matrix_mul()

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

m2 = .transpose(m2);
return map x in (m1) to (map y in (m2) to (.dot(x, y)));

["// 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