diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-06-04 09:12:15 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-04 09:12:15 -0600 |
commit | d93a5dd6b15fcc10377c484247f84ad80ccd3b66 (patch) | |
tree | 59ee8ea4e954f856f0d8cb587423b426b61e2686 /numpy/core/numeric.py | |
parent | 95a5ed9cf0f0af5002d0a984bad27827f169ba7d (diff) | |
parent | 0975f34260422f81211eb9087f4712598aaa5118 (diff) | |
download | numpy-d93a5dd6b15fcc10377c484247f84ad80ccd3b66.tar.gz |
Merge pull request #9219 from eric-wieser/outer-docs
DOC: Link to ufunc.outer from np.outer
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 ---------- |