diff options
author | alex <argriffi@ncsu.edu> | 2015-06-22 09:52:25 -0400 |
---|---|---|
committer | alex <argriffi@ncsu.edu> | 2015-06-22 09:52:25 -0400 |
commit | b5bbb64cabb305b284e124bd60948bbbbfcac43c (patch) | |
tree | d759bcc7dd97a3676c1fd0478660d2868393140a /numpy/linalg/linalg.py | |
parent | bec3440743e119a0cda7adf5d4b8ea1c350e0a6f (diff) | |
download | numpy-b5bbb64cabb305b284e124bd60948bbbbfcac43c.tar.gz |
DOC: docstring typos _ssyevd -> _syevd
Diffstat (limited to 'numpy/linalg/linalg.py')
-rw-r--r-- | numpy/linalg/linalg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index ceb14f8ad..07a7a0d42 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -953,7 +953,7 @@ def eigvalsh(a, UPLO='L'): Broadcasting rules apply, see the `numpy.linalg` documentation for details. - The eigenvalues are computed using LAPACK routines _ssyevd, _heevd + The eigenvalues are computed using LAPACK routines _syevd, _heevd Examples -------- @@ -1176,7 +1176,7 @@ def eigh(a, UPLO='L'): Broadcasting rules apply, see the `numpy.linalg` documentation for details. - The eigenvalues/eigenvectors are computed using LAPACK routines _ssyevd, + The eigenvalues/eigenvectors are computed using LAPACK routines _syevd, _heevd The eigenvalues of real symmetric or complex Hermitian matrices are |