Linear Algebra
Matrix and vector products
Return the cross product of two (arrays of) vectors. |
|
Returns the dot product of x1 and x2. |
|
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. |
|
Compute the eigenvalues of a general matrix. |
Norms etc.
Compute the determinant of an array. |
|
Matrix or vector norm. |
|
Return matrix rank of array Rank of the array is the number of singular values of the array that are greater than tol. |
|
Return the sum along diagonals of the array. |
Solving linear equations
Divide arguments element-wise. |