
Last chance! 50% off unlimited learning
Sale ends in
Matrix_power
torch_matrix_power(self, n)
(Tensor) the input tensor.
(int) the power to raise the matrix to
Returns the matrix raised to the power n
for square matrices.
For batch of matrices, each individual matrix is raised to the power n
.
If n
is negative, then the inverse of the matrix (if invertible) is
raised to the power n
. For a batch of matrices, the batched inverse
(if invertible) is raised to the power n
. If n
is 0, then an identity matrix
is returned.
if (torch_is_installed()) {
a = torch_randn(c(2, 2, 2))
a
torch_matrix_power(a, 3)
}
Run the code above in your browser using DataLab