MCPcopy Create free account
hub / github.com/numpy/numpy / PyArray_MatrixProduct

Function PyArray_MatrixProduct

numpy/core/src/multiarray/multiarraymodule.c:987–991  ·  view source on GitHub ↗

NUMPY_API * Numeric.matrixproduct(a,v) * just like inner product but does the swapaxes stuff on the fly */

Source from the content-addressed store, hash-verified

985 * just like inner product but does the swapaxes stuff on the fly
986 */
987NPY_NO_EXPORT PyObject *
988PyArray_MatrixProduct(PyObject *op1, PyObject *op2)
989{
990 return PyArray_MatrixProduct2(op1, op2, NULL);
991}
992
993/*NUMPY_API
994 * Numeric.matrixproduct2(a,v,out)

Callers

nothing calls this directly

Calls 1

PyArray_MatrixProduct2Function · 0.85

Tested by

no test coverage detected