From 5435bdc0a23b26455f6a47d93e39e02b394b0503 Mon Sep 17 00:00:00 2001 From: Mark Wiebe Date: Mon, 24 Jan 2011 17:08:06 -0800 Subject: DOC: core: Document the new einsum function --- numpy/core/numeric.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'numpy/core/numeric.py') 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 ----- -- cgit v1.2.1