Linear Algebra
Matrix and vector products
Dot product of a and b. |
|
Compute the dot product of two or more arrays in a single function call. |
|
Return the dot product of two vectors. |
|
Returns the inner product of two arrays. |
|
Returns the outer product of two arrays. |
|
Matrix product of two arrays. |
|
Compute tensor dot product along specified axes. |
|
Evaluates the Einstein summation convention on the operands. |
|
Evaluates the lowest cost contraction order for an einsum expression by considering the creation of intermediate arrays. |
|
Raise a square matrix to the (integer) power count. |
|
Returns the kronecker product of two arrays. |
Decompositions
Cholesky decomposition. |
|
Compute the qr factorization of a matrix. |
|
Singular Value Decomposition. |
Matrix eigenvalues
Compute the eigenvalues and right eigenvectors of a square array. |
|
Return the eigenvalues and eigenvectors of a complex Hermitian (conjugate symmetric) or a real symmetric matrix. |
|
Compute the eigenvalues of a general matrix. |
Norms and other numbers
Matrix or vector norm. |
|
Compute the condition number of a matrix. |
|
Compute the determinant of an array. |
|
Return matrix rank of array using SVD method. |
|
Compute the sign and (natural) logarithm of the determinant of an array. |
|
Return the sum along diagonals of the array. |
Solving linear equations
Solve a linear matrix equation, or system of linear scalar equations. |
|
Compute the (multiplicative) inverse of a matrix. |
|
Compute the (Moore-Penrose) pseudo-inverse of a matrix. |