Real
torch_real(self)
self
: (Tensor) the input tensor.Returns the real part of the input
tensor. If input
is a real (non-complex) tensor, this function just returns it.
Not yet implemented for complex tensors.
if (torch_is_installed()) { ## Not run: torch_real(torch_tensor(c(-1 + 1i, -2 + 2i, 3 - 3i))) ## End(Not run) }
Useful links