diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2017-06-04 12:28:14 +0100 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2017-06-04 12:31:24 +0100 |
commit | 0975f34260422f81211eb9087f4712598aaa5118 (patch) | |
tree | a7dacf65a314cbd45ee4f63556deaea00c186b4d /numpy/core/numeric.py | |
parent | 4d9f4d5d5e00076be64c6d43e691df8273f749ef (diff) | |
download | numpy-0975f34260422f81211eb9087f4712598aaa5118.tar.gz |
DOC: Link to ufunc.outer from np.outer
[ci skip]
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 83f2ce838..013c8a92a 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1106,7 +1106,10 @@ def outer(a, b, out=None): See also -------- - inner, einsum + inner + einsum : ``einsum('i,j->ij', a.ravel(), b.ravel())`` is the equivalent. + ufunc.outer : A generalization to N dimensions and other operations. + ``np.multiply.outer(a.ravel(), b.ravel())`` is the equivalent. References ---------- |