diff options
author | Travis Oliphant <oliphant@enthought.com> | 2007-12-15 18:54:52 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2007-12-15 18:54:52 +0000 |
commit | e76b5fa6896c09257181675bbf4cf47789d32927 (patch) | |
tree | 7174e22c68fc47df61e745ee18625ee9f4f5b88c /numpy/linalg/info.py | |
parent | 02ee35a7e1c722a1cdac8f3a60fe9ef7aa079a37 (diff) | |
download | numpy-e76b5fa6896c09257181675bbf4cf47789d32927.tar.gz |
Create a branch for io work in NumPy
Diffstat (limited to 'numpy/linalg/info.py')
-rw-r--r-- | numpy/linalg/info.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/numpy/linalg/info.py b/numpy/linalg/info.py deleted file mode 100644 index fce02b836..000000000 --- a/numpy/linalg/info.py +++ /dev/null @@ -1,25 +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) using lstsq - - 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. - svd --- Singular value decomposition of a matrix - cholesky --- Cholesky decomposition of a matrix - -""" - -depends = ['core'] |