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