diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-01-24 17:08:06 -0800 |
---|---|---|
committer | Mark Wiebe <mwwiebe@gmail.com> | 2011-01-24 17:08:06 -0800 |
commit | 5435bdc0a23b26455f6a47d93e39e02b394b0503 (patch) | |
tree | 870b3a1d407d5c02bb0850f39711faa4cc0b44d6 /numpy/core/numeric.py | |
parent | e81e8dab9c39a4f8523ff56bb667cd8b04de91c7 (diff) | |
download | numpy-5435bdc0a23b26455f6a47d93e39e02b394b0503.tar.gz |
DOC: core: Document the new einsum function
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 6 |
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 ----- |