Linear Algebra

Functions for performing linear algebra operations, essential in many scientific and engineering tasks.

Functions

af.det() - Find the determinant of a matrix.

af.dot() - Compute the dot product.

af.gemm() - General matrix multiplication.

af.inv() - Computes the inverse of a matrix.

af.inverse() - Invert a matrix.

af.is_lapack_available() - Check if lapack runtimes are available

af.lu() - Perform LU decomposition.

af.matmul() - Matrix multiplication.

af.norm() - Find the norm of a matrix.

af.pinverse() - Pseudo-invert (Moore-Penrose) a matrix.

af.qr() - Perform QR decomposition.

af.rank() - Find the rank of a matrix.

af.solve() - Solve a system of equations.

af.svd() - Perform singular value decomposition.