You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/numpy/linalg/__init__.pyi

27 lines
696 B

from typing import Any, List
__all__: List[str]
class LinAlgError(Exception): ...
def tensorsolve(a, b, axes=...): ...
def solve(a, b): ...
def tensorinv(a, ind=...): ...
def inv(a): ...
def matrix_power(a, n): ...
def cholesky(a): ...
def qr(a, mode=...): ...
def eigvals(a): ...
def eigvalsh(a, UPLO=...): ...
def eig(a): ...
def eigh(a, UPLO=...): ...
def svd(a, full_matrices=..., compute_uv=..., hermitian=...): ...
def cond(x, p=...): ...
def matrix_rank(M, tol=..., hermitian=...): ...
def pinv(a, rcond=..., hermitian=...): ...
def slogdet(a): ...
def det(a): ...
def lstsq(a, b, rcond=...): ...
def norm(x, ord=..., axis=..., keepdims=...): ...
def multi_dot(arrays, *, out=...): ...