Expand description
Linear algebra operations.
Enums§
- Ord
- Order of the norm
Functions§
- cholesky
- Compute the Cholesky decomposition of a real symmetric positive semi-definite matrix.
- cholesky_
device - Compute the Cholesky decomposition of a real symmetric positive semi-definite matrix.
- cholesky_
inv - Compute the inverse of a real symmetric positive semi-definite matrix using it’s Cholesky decomposition.
- cholesky_
inv_ device - Compute the inverse of a real symmetric positive semi-definite matrix using it’s Cholesky decomposition.
- cross
- Compute the cross product of two arrays along a specified axis.
- cross_
device - Compute the cross product of two arrays along a specified axis.
- eigh
- Compute the eigenvalues and eigenvectors of a complex Hermitian or real symmetric matrix.
- eigh_
device - Compute the eigenvalues and eigenvectors of a complex Hermitian or real symmetric matrix.
- eigvalsh
- Compute the eigenvalues of a complex Hermitian or real symmetric matrix.
- eigvalsh_
device - Compute the eigenvalues of a complex Hermitian or real symmetric matrix.
- inv
- Compute the inverse of a square matrix. Returns an error if the input is not valid.
- inv_
device - Compute the inverse of a square matrix. Returns an error if the input is not valid.
- lu
- Compute the LU factorization of the given matrix A.
- lu_
device - Compute the LU factorization of the given matrix A.
- lu_
factor - Computes a compact representation of the LU factorization.
- lu_
factor_ device - Computes a compact representation of the LU factorization.
- norm
- Matrix or vector norm.
- norm_
device - Matrix or vector norm.
- norm_
ord - Matrix or vector norm.
- norm_
ord_ device - Matrix or vector norm.
- norm_p
- Compute p-norm of an
Array
- norm_
p_ device - Compute p-norm of an
Array
- pinv
- Compute the (Moore-Penrose) pseudo-inverse of a matrix.
- pinv_
device - Compute the (Moore-Penrose) pseudo-inverse of a matrix.
- qr
- The QR factorization of the input matrix. Returns an error if the input is not valid.
- qr_
device - The QR factorization of the input matrix. Returns an error if the input is not valid.
- solve
- Compute the solution to a system of linear equations
AX = B
- solve_
device - Compute the solution to a system of linear equations
AX = B
- solve_
triangular - Computes the solution of a triangular system of linear equations
AX = B
- solve_
triangular_ device - Computes the solution of a triangular system of linear equations
AX = B
- svd
- The Singular Value Decomposition (SVD) of the input matrix. Returns an error if the input is not valid.
- svd_
device - The Singular Value Decomposition (SVD) of the input matrix. Returns an error if the input is not valid.
- tri_inv
- Compute the inverse of a triangular square matrix.
- tri_
inv_ device - Compute the inverse of a triangular square matrix.