Skip to content

Commit

Permalink
DOC: Fix typo in documentation
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Ladsgroup committed Jun 11, 2015
1 parent abaa848 commit 6925cb7
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 6925cb7

Please sign in to comment.