diff options
Diffstat (limited to 'numpy/linalg/info.py')
-rw-r--r-- | numpy/linalg/info.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/numpy/linalg/info.py b/numpy/linalg/info.py index da6a9df20..45e2d6640 100644 --- a/numpy/linalg/info.py +++ b/numpy/linalg/info.py @@ -15,11 +15,10 @@ Core Linear Algebra Tools eig --- Find the eigenvalues and vectors of a square matrix eigh --- Find the eigenvalues and eigenvectors of a Hermitian matrix eigvals --- Find the eigenvalues of a square matrix - eigvalsh --- Find the eigenvalues of a Hermitian matrix. + eigvalsh --- Find the eigenvalues of a Hermitian matrix. svd --- Singular value decomposition of a matrix - cholesky --- Cholesky decomposition of a matrix + cholesky --- Cholesky decomposition of a matrix """ depends = ['core'] - |