diff options
Diffstat (limited to 'numpy/linalg/info.py')
-rw-r--r-- | numpy/linalg/info.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/numpy/linalg/info.py b/numpy/linalg/info.py index 45e2d6640..e28668a8c 100644 --- a/numpy/linalg/info.py +++ b/numpy/linalg/info.py @@ -4,18 +4,19 @@ Core Linear Algebra Tools Linear Algebra Basics: - inv --- Find the inverse of a square matrix + norm --- Vector or matrix norm + inv --- Inverse of a square matrix solve --- Solve a linear system of equations - det --- Find the determinant of a square matrix + det --- Determinant of a square matrix lstsq --- Solve linear least-squares problem pinv --- Pseudo-inverse (Moore-Penrose) using lstsq Eigenvalues and Decompositions: - 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. + eig --- Eigenvalues and vectors of a square matrix + eigh --- Eigenvalues and eigenvectors of a Hermitian matrix + eigvals --- Eigenvalues of a square matrix + eigvalsh --- Eigenvalues of a Hermitian matrix. svd --- Singular value decomposition of a matrix cholesky --- Cholesky decomposition of a matrix |