summaryrefslogtreecommitdiff
path: root/doc/source/reference/routines.linalg.rst
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2008-11-23 10:39:05 +0000
committerPauli Virtanen <pav@iki.fi>2008-11-23 10:39:05 +0000
commit03582a3dbd1b4643b7b70cf277eada66dcb0800e (patch)
tree1cc0fa73843d5e602a561696817f41c4abfb811b /doc/source/reference/routines.linalg.rst
parent638bacdd9212dd2258a886e0124cca56bf2b905d (diff)
parent84054e34dd58ceebc981d349d997e4dd7cd7c80c (diff)
downloadnumpy-03582a3dbd1b4643b7b70cf277eada66dcb0800e.tar.gz
Moved numpy-docs under doc/ in the main Numpy trunk.
Diffstat (limited to 'doc/source/reference/routines.linalg.rst')
-rw-r--r--doc/source/reference/routines.linalg.rst67
1 files changed, 67 insertions, 0 deletions
diff --git a/doc/source/reference/routines.linalg.rst b/doc/source/reference/routines.linalg.rst
new file mode 100644
index 000000000..595b02744
--- /dev/null
+++ b/doc/source/reference/routines.linalg.rst
@@ -0,0 +1,67 @@
+.. _routines.linalg:
+
+Linear algebra (:mod:`numpy.linalg`)
+************************************
+
+.. currentmodule:: numpy
+
+Matrix and vector products
+--------------------------
+.. autosummary::
+ :toctree: generated/
+
+ dot
+ vdot
+ inner
+ outer
+ tensordot
+ linalg.matrix_power
+ kron
+
+Decompositions
+--------------
+.. autosummary::
+ :toctree: generated/
+
+ linalg.cholesky
+ linalg.qr
+ linalg.svd
+
+Matrix eigenvalues
+------------------
+.. autosummary::
+ :toctree: generated/
+
+ linalg.eig
+ linalg.eigh
+ linalg.eigvals
+ linalg.eigvalsh
+
+Norms and other numbers
+-----------------------
+.. autosummary::
+ :toctree: generated/
+
+ linalg.norm
+ linalg.cond
+ linalg.det
+ trace
+
+Solving equations and inverting matrices
+----------------------------------------
+.. autosummary::
+ :toctree: generated/
+
+ linalg.solve
+ linalg.tensorsolve
+ linalg.lstsq
+ linalg.inv
+ linalg.pinv
+ linalg.tensorinv
+
+Exceptions
+----------
+.. autosummary::
+ :toctree: generated/
+
+ linalg.LinAlgError