comparison DEPENDENCIES/mingw32/Python27/Lib/site-packages/numpy/linalg/info.py @ 87:2a2c65a20a8b

Add Python libs and headers
author Chris Cannam
date Wed, 25 Feb 2015 14:05:22 +0000
parents
children
comparison
equal deleted inserted replaced
86:413a9d26189e 87:2a2c65a20a8b
1 """\
2 Core Linear Algebra Tools
3 -------------------------
4 Linear algebra basics:
5
6 - norm Vector or matrix norm
7 - inv Inverse of a square matrix
8 - solve Solve a linear system of equations
9 - det Determinant of a square matrix
10 - lstsq Solve linear least-squares problem
11 - pinv Pseudo-inverse (Moore-Penrose) calculated using a singular
12 value decomposition
13 - matrix_power Integer power of a square matrix
14
15 Eigenvalues and decompositions:
16
17 - eig Eigenvalues and vectors of a square matrix
18 - eigh Eigenvalues and eigenvectors of a Hermitian matrix
19 - eigvals Eigenvalues of a square matrix
20 - eigvalsh Eigenvalues of a Hermitian matrix
21 - qr QR decomposition of a matrix
22 - svd Singular value decomposition of a matrix
23 - cholesky Cholesky decomposition of a matrix
24
25 Tensor operations:
26
27 - tensorsolve Solve a linear tensor equation
28 - tensorinv Calculate an inverse of a tensor
29
30 Exceptions:
31
32 - LinAlgError Indicates a failed linear algebra operation
33
34 """
35 from __future__ import division, absolute_import, print_function
36
37 depends = ['core']