PyTorch
torch / torch
torch.angle¶
-
torch.
angle
(input, *, out=None) → Tensor¶ Computes the element-wise angle (in radians) of the given
input
tensor.outi=angle(inputi)- Parameters
input (Tensor) – the input tensor.
- Keyword Arguments
out (Tensor, optional) – the output tensor.
Example:
>>> torch.angle(torch.tensor([-1 + 1j, -2 + 2j, 3 - 3j]))*180/3.14159 tensor([ 135., 135, -45])
此页内容是否对您有帮助
感谢反馈!