Newbie question about numpy

Robert Kern robert.kern at gmail.com
Thu Aug 24 12:25:30 EDT 2006


Avell Diroll wrote:

> For matrices multiplication, you could get a hint by typing the
> following in the interpreter :
> 
>>>> import numpy
>>>> dir(numpy)
>>>> help(numpy.matrixmultiply)    #type "q" to exit

Note that the name matrixmultiply() has been deprecated in favor of dot() for 
many, many years now even in Numeric, numpy's predecessor. It has finally been 
removed in recent versions of numpy.

-- 
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
  that is made terrible by our own mad attempt to interpret it as though it had
  an underlying truth."
   -- Umberto Eco




More information about the Python-list mailing list