diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 17:33:12 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 17:33:12 +0000 |
commit | 8057b2d910a5a6726a666a2c18ac495dbb9e6000 (patch) | |
tree | e8ab5a397e9d2d1fd3885f3524821587ee2d407c /numpy/linalg/info.py | |
parent | da9c6da4a304d240492b653f526b9607b032921c (diff) | |
download | numpy-8057b2d910a5a6726a666a2c18ac495dbb9e6000.tar.gz |
rename sub-packages
Diffstat (limited to 'numpy/linalg/info.py')
-rw-r--r-- | numpy/linalg/info.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/numpy/linalg/info.py b/numpy/linalg/info.py new file mode 100644 index 000000000..740dfcc1a --- /dev/null +++ b/numpy/linalg/info.py @@ -0,0 +1,25 @@ +"""\ +Core Linear Algebra Tools +=========== + + Linear Algebra Basics: + + inv --- Find the inverse of a square matrix + solve --- Solve a linear system of equations + det --- Find the 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. + svd --- Singular value decomposition of a matrix + cholesky --- Cholesky decomposition of a matrix + +""" + +depends = ['base'] + |