PyTorch
torch / torch
torch.rad2deg¶
-
torch.
rad2deg
(input, *, out=None) → 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]])
此页内容是否对您有帮助
感谢反馈!