[EMAIL PROTECTED] wrote:

How about just making a matrix multiply function that can take many
arguments?  I think this is pretty readable:

mmul(a, b, c, d)

The multiplications aren't necessarily all together, e.g.

  a*b + c*d + e*f

would become

  mmul(a, b) + mmul(c, d) + mmul(e, f)

--
Greg
_______________________________________________
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to