diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-06-19 17:53:55 -0400 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-06-19 17:53:55 -0400 |
commit | a9695eec20c029d8d64f0e7162f7947b6c3589a5 (patch) | |
tree | 482ca7993bfb250ef020c628d4826fae37298fbb /numpy | |
parent | e42bea5f09b7056d37217c26efd9008bc7ff380a (diff) | |
parent | 14a28bd8e7eb1f99e570cd2903d955c6b9d0038e (diff) | |
download | numpy-a9695eec20c029d8d64f0e7162f7947b6c3589a5.tar.gz |
Merge pull request #5987 from argriffing/eighvalsh-docs
DOC: update eigvalsh docstring example
Diffstat (limited to 'numpy')
-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 022498c18..3a1a78940 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -958,7 +958,7 @@ def eigvalsh(a, UPLO='L'): >>> from numpy import linalg as LA >>> a = np.array([[1, -2j], [2j, 5]]) >>> LA.eigvalsh(a) - array([ 0.17157288+0.j, 5.82842712+0.j]) + array([ 0.17157288, 5.82842712]) """ UPLO = UPLO.upper() |