Skip to content

Commit

Permalink
Merge pull request numpy#5959 from Ladsgroup/master
Browse files Browse the repository at this point in the history
Fix typo in documentation
  • Loading branch information
charris committed Jun 11, 2015
2 parents abaa848 + 6925cb7 commit 1fe98ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions numpy/linalg/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -1023,11 +1023,11 @@ def eig(a):
--------
eigvals : eigenvalues of a non-symmetric array.
eigh : eigenvalues and eigenvectors of a symmetric or Hermitian
(conjugate symmetric) array.
eigh : eigenvalues and eigenvectors of a symmetric or Hermitian
(conjugate symmetric) array.
eigvalsh : eigenvalues of a symmetric or Hermitian (conjugate symmetric)
array.
array.
Notes
-----
Expand Down Expand Up @@ -1747,7 +1747,7 @@ def det(a):
>>> a = np.array([ [[1, 2], [3, 4]], [[1, 2], [2, 1]], [[1, 3], [3, 1]] ])
>>> a.shape
(2, 2, 2
(3, 2, 2)
>>> np.linalg.det(a)
array([-2., -3., -8.])
Expand Down

0 comments on commit 1fe98ff

Please sign in to comment.