mit neuen venv und exe-Files

This commit is contained in:
2024-11-03 17:26:54 +01:00
parent 07c05a338a
commit 0c373ff593
15115 changed files with 1998469 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
from numpy.linalg._linalg import (
matrix_power as matrix_power,
solve as solve,
tensorsolve as tensorsolve,
tensorinv as tensorinv,
inv as inv,
cholesky as cholesky,
outer as outer,
eigvals as eigvals,
eigvalsh as eigvalsh,
pinv as pinv,
slogdet as slogdet,
det as det,
svd as svd,
svdvals as svdvals,
eig as eig,
eigh as eigh,
lstsq as lstsq,
norm as norm,
matrix_norm as matrix_norm,
vector_norm as vector_norm,
qr as qr,
cond as cond,
matrix_rank as matrix_rank,
multi_dot as multi_dot,
matmul as matmul,
trace as trace,
diagonal as diagonal,
cross as cross,
)
from numpy._core.fromnumeric import (
matrix_transpose as matrix_transpose
)
from numpy._core.numeric import (
tensordot as tensordot, vecdot as vecdot
)
from numpy._pytesttester import PytestTester
__all__: list[str]
test: PytestTester
class LinAlgError(Exception): ...