Hackfut Security File Manager
Current Path:
/opt/alt/python27/lib64/python2.7/site-packages/numpy/linalg
opt
/
alt
/
python27
/
lib64
/
python2.7
/
site-packages
/
numpy
/
linalg
/
📁
..
📄
__init__.py
(2.29 KB)
📄
__init__.pyc
(2.53 KB)
📄
__init__.pyo
(2.53 KB)
📄
_umath_linalg.so
(135.88 KB)
📄
info.py
(1.17 KB)
📄
info.pyc
(1.4 KB)
📄
info.pyo
(1.4 KB)
📄
lapack_lite.so
(15.04 KB)
📄
linalg.py
(74.09 KB)
📄
linalg.pyc
(73.75 KB)
📄
linalg.pyo
(73.75 KB)
📄
setup.py
(1.83 KB)
📄
setup.pyc
(2.05 KB)
📄
setup.pyo
(2.05 KB)
📁
tests
Editing: __init__.py
""" 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 slogdet Logarithm of the 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 matrix_rank Calculate matrix rank using an SVD-based method =============== ========================================================== =============== ========================================================== 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 # To get sub-modules from .info import __doc__ from .linalg import * from numpy.testing.nosetester import _numpy_tester test = _numpy_tester().test bench = _numpy_tester().bench
Upload File
Create Folder