Skip to content

Commit

Permalink
Merge pull request numpy#5987 from argriffing/eighvalsh-docs
Browse files Browse the repository at this point in the history
DOC: update eigvalsh docstring example
  • Loading branch information
charris committed Jun 19, 2015
2 parents e42bea5 + 14a28bd commit a9695ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/linalg/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit a9695ee

Please sign in to comment.