neovim/typings/numpy/linalg/__init__.pyi

15 lines
594 B
Python
Raw Normal View History

2023-10-24 22:54:55 -04:00
"""
This type stub file was generated by pyright.
"""
from numpy.linalg.linalg import cholesky as cholesky, cond as cond, det as det, eig as eig, eigh as eigh, eigvals as eigvals, eigvalsh as eigvalsh, inv as inv, lstsq as lstsq, matrix_power as matrix_power, matrix_rank as matrix_rank, multi_dot as multi_dot, norm as norm, pinv as pinv, qr as qr, slogdet as slogdet, solve as solve, svd as svd, tensorinv as tensorinv, tensorsolve as tensorsolve
from numpy._pytesttester import PytestTester
__all__: list[str]
__path__: list[str]
test: PytestTester
class LinAlgError(Exception):
...