mirror of https://github.com/exaloop/codon.git
18 lines
803 B
Python
18 lines
803 B
Python
# Copyright (C) 2022-2025 Exaloop Inc. <https://exaloop.io>
|
|
|
|
from .linalg import cholesky, eig, eigh, eigvals, \
|
|
eigvalsh, inv, lstsq, qr, solve, \
|
|
svd, svdvals, inner, outer, \
|
|
tensordot, matmul, multi_dot, \
|
|
trace, tensorsolve, tensorinv, \
|
|
norm, pinv, matrix_rank, cond, \
|
|
matrix_power, det, slogdet, \
|
|
_matmul_ufunc, _trace_ufunc, \
|
|
matrix_transpose, LinAlgError, \
|
|
dot as _linalg_dot, \
|
|
vdot as _linalg_vdot, \
|
|
tensordot as _linalg_tensordot, \
|
|
inner as _linalg_inner, \
|
|
outer as _linalg_outer, \
|
|
kron as _linalg_kron
|