diff options
author | Frederic <nouiz@nouiz.org> | 2014-07-17 14:16:55 -0400 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-07-17 20:35:41 +0200 |
commit | 88cf0e4f6d722b12f2d57e3acb6452d6a015cc93 (patch) | |
tree | 6f00ddce46883893b957d25d2baa12b78f6f794a /numpy/linalg/linalg.py | |
parent | acc3369adebf1cd5c6df7f58fe691be1a80a484a (diff) | |
download | numpy-88cf0e4f6d722b12f2d57e3acb6452d6a015cc93.tar.gz |
DOC: fix return shape of tensorinv doc
Diffstat (limited to 'numpy/linalg/linalg.py')
-rw-r--r-- | numpy/linalg/linalg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index e5d13efc8..6b2299fe7 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -404,7 +404,7 @@ def tensorinv(a, ind=2): Returns ------- b : ndarray - `a`'s tensordot inverse, shape ``a.shape[:ind] + a.shape[ind:]``. + `a`'s tensordot inverse, shape ``a.shape[ind:] + a.shape[:ind]``. Raises ------ |