diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-09-25 22:56:57 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-25 22:56:57 +0300 |
commit | be0ec673bc44481ba6b6d63e943b96c0d93e78fb (patch) | |
tree | 232388b367be571bc45963019ad601b352d930e7 /numpy/linalg/info.py | |
parent | 23c7769ff432097432035c1b5e803355ffa2bdd5 (diff) | |
parent | 7960edee9ccf1a6e8b48d269a13e54f658e560b8 (diff) | |
download | numpy-be0ec673bc44481ba6b6d63e943b96c0d93e78fb.tar.gz |
Merge pull request #14573 from rgommers/remove-info-files
DOC: update submodule docstrings, remove info.py files
Diffstat (limited to 'numpy/linalg/info.py')
-rw-r--r-- | numpy/linalg/info.py | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/numpy/linalg/info.py b/numpy/linalg/info.py deleted file mode 100644 index 646ecda04..000000000 --- a/numpy/linalg/info.py +++ /dev/null @@ -1,37 +0,0 @@ -"""\ -Core Linear Algebra Tools -------------------------- -Linear algebra basics: - -- norm Vector or matrix norm -- inv Inverse of a square matrix -- solve Solve a linear system of equations -- det Determinant of a square matrix -- lstsq Solve linear least-squares problem -- pinv Pseudo-inverse (Moore-Penrose) calculated using a singular - value decomposition -- matrix_power Integer power of a square matrix - -Eigenvalues and decompositions: - -- 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 -- qr QR decomposition of a matrix -- svd Singular value decomposition of a matrix -- cholesky Cholesky decomposition of a matrix - -Tensor operations: - -- tensorsolve Solve a linear tensor equation -- tensorinv Calculate an inverse of a tensor - -Exceptions: - -- LinAlgError Indicates a failed linear algebra operation - -""" -from __future__ import division, absolute_import, print_function - -depends = ['core'] |