Diag
torch_diag(self, diagonal = 0L)
self
: (Tensor) the input tensor.diagonal
: (int, optional) the diagonal to considerinput
is a vector (1-D tensor), then returns a 2-D square tensor with the elements of input
as the diagonal.input
is a matrix (2-D tensor), then returns a 1-D tensor with the diagonal elements of input
.The argument diagonal
controls which diagonal to consider:
diagonal
= 0, it is the main diagonal.diagonal
> 0, it is above the main diagonal.diagonal
< 0, it is below the main diagonal.Useful links