torch.rad2deg — PyTorch 2.7 documentation (original) (raw)
Shortcuts
torch.rad2deg(input: Tensor, *, out: Optional[Tensor]) → Tensor¶
Returns a new tensor with each of the elements of input
converted from angles in radians to degrees.
Parameters
input (Tensor) – the input tensor.
Keyword Arguments
out (Tensor, optional) – the output tensor.
Example:
a = torch.tensor([[3.142, -3.142], [6.283, -6.283], [1.570, -1.570]]) torch.rad2deg(a) tensor([[ 180.0233, -180.0233], [ 359.9894, -359.9894], [ 89.9544, -89.9544]])