7 Mar
2013
7 Mar
'13
2:26 p.m.
On Thu, 2013-03-07 at 13:36 -0600, Mayank Daga wrote:
Can someone point me to the definition of dot() in the numpy source? The only instance of 'def dot()' I found was in numpy/ma/extras.py but that does not seem to be the correct one.
It seems to be in a dynamic library. In [9]: numpy.dot.__module__ Out[9]: 'numpy.core.multiarray' In [10]: numpy.core.multiarray.__file__ Out[10]: '/usr/local/lib/python2.7/dist-packages/numpy/core/multiarray.so' so... in here perhaps? https://github.com/numpy/numpy/blob/master/numpy/core/src/multiarray/multiar... hen