From: Keith G. <kwg...@gm...> - 2006-11-08 14:33:15
|
On 11/8/06, izak marais <iza...@ya...> wrote: > Sorry if this is an obvious question, but what is the easiest way to > multiply matrices in numpy? Suppose I want to do A=B*C*D. The ' * ' operator > apparently does element wise multiplication, as does the 'multiply' ufunc. > All I could find was the numeric function 'matrix_multiply, but this only > takes two arguments. If B and C and D are matrices, then '*' is matrix multiplication. |