From 0975f34260422f81211eb9087f4712598aaa5118 Mon Sep 17 00:00:00 2001 From: Eric Wieser Date: Sun, 4 Jun 2017 12:28:14 +0100 Subject: DOC: Link to ufunc.outer from np.outer [ci skip] --- numpy/core/numeric.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'numpy/core/numeric.py') 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 ---------- -- cgit v1.2.1