Skip to contents

Throws a runtime_error if the matrix is not invertible.

Usage

linalg_inv(A)

Arguments

A

(Tensor): tensor of shape (*, n, n) where * is zero or more batch dimensions consisting of invertible matrices.

Details

Letting be or , for a matrix , its inverse matrix (if it exists) is defined as

A1A=AA1=In A^{-1}A = AA^{-1} = \mathrm{I}_n where is the n-dimensional identity matrix.

The inverse matrix exists if and only if is invertible. In this case, the inverse is unique. Supports input of float, double, cfloat and cdouble dtypes. Also supports batches of matrices, and if A is a batch of matrices then the output has the same batch dimensions.

Consider using linalg_solve() if possible for multiplying a matrix on the left by the inverse, as linalg_solve(A, B) == A$inv() %*% B It is always prefered to use linalg_solve() when possible, as it is faster and more numerically stable than computing the inverse explicitly.

See also

Examples

if (torch_is_installed()) {
A <- torch_randn(4, 4)
linalg_inv(A)
}
#> torch_tensor
#>  0.0068 -0.0399 -0.4521 -0.0733
#> -0.7362 -0.6687 -0.2089 -0.6292
#> -0.0672 -1.1239 -0.5461  0.4928
#>  0.4335  0.7065  0.0168  1.1575
#> [ CPUFloatType{4,4} ]