diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-04 18:47:25 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-04 18:47:25 +0000 |
commit | a9046559ee562323b483ffbb80eb4b4d0cb11d36 (patch) | |
tree | d6875105a0c2999d512f853886ae975030016bc0 /numpy/core/blasdot | |
parent | 7ffd787c0702925a985fedfc0c988059a77c2b61 (diff) | |
download | numpy-a9046559ee562323b483ffbb80eb4b4d0cb11d36.tar.gz |
Convert so that axis arguments are consistent for methods and functions. Place functions for which this changes the Numeric default into oldnumeric.
Diffstat (limited to 'numpy/core/blasdot')
-rw-r--r-- | numpy/core/blasdot/_dotblas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/blasdot/_dotblas.c b/numpy/core/blasdot/_dotblas.c index 91b50b43b..950bf7179 100644 --- a/numpy/core/blasdot/_dotblas.c +++ b/numpy/core/blasdot/_dotblas.c @@ -172,7 +172,7 @@ _select_matrix_shape(PyArrayObject *array) } -static char doc_matrixproduct[] = "matrixproduct(a,b)\nReturns the dot product of a and b for arrays of floating point types.\nLike the generic numpy equivalent the product sum is over\nthe last dimension of a and the second-to-last dimension of b.\nNB: The first argument is not conjugated."; +static char doc_matrixproduct[] = "dot(a,b)\nReturns the dot product of a and b for arrays of floating point types.\nLike the generic numpy equivalent the product sum is over\nthe last dimension of a and the second-to-last dimension of b.\nNB: The first argument is not conjugated."; static PyObject * dotblas_matrixproduct(PyObject *dummy, PyObject *args) |