PyTorch
torch / torch
torch.conj¶
-
torch.
conj
(input, *, out=None) → Tensor¶ Computes the element-wise conjugate of the given
input
tensor. If :attr`input` has a non-complex dtype, this function just returnsinput
.Warning
In the future,
torch.conj()
may return a non-writeable view for aninput
of non-complex dtype. It’s recommended that programs not modify the tensor returned bytorch.conj()
wheninput
is of non-complex dtype to be compatible with this change.outi=conj(inputi)- Parameters
input (Tensor) – the input tensor.
- Keyword Arguments
out (Tensor, optional) – the output tensor.
Example:
>>> torch.conj(torch.tensor([-1 + 1j, -2 + 2j, 3 - 3j])) tensor([-1 - 1j, -2 - 2j, 3 + 3j])
此页内容是否对您有帮助
感谢反馈!