summaryrefslogtreecommitdiff
path: root/numpy/core
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core')
-rw-r--r--numpy/core/numeric.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index 8cdb18435..43456b97f 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -817,6 +817,10 @@ def outer(a,b):
out : ndarray, shape (M, N)
``out[i, j] = a[i] * b[j]``
+ See also
+ --------
+ numpy.inner, numpy.einsum
+
References
----------
.. [1] : G. H. Golub and C. F. van Loan, *Matrix Computations*, 3rd
@@ -907,7 +911,7 @@ def tensordot(a, b, axes=2):
See Also
--------
- numpy.dot
+ numpy.dot, numpy.einsum
Notes
-----