From: Johannes L. <a.u...@gm...> - 2006-11-08 16:16:31
|
Hi, in extension to the previous answers, I'd like to say that it is strongly preferable to use dot(A,dot(B,C)) or dot(dot(A,B),C) instead of A*B*C. The reason is that with dot(), you can control of which operation is performed first, which can *massively* influence the time needed, depending on the involved matrices. A*B*C will always be evaluated left-to-right (if I remember correctly). Johannes |