Real
real(input) -> Tensor
Returns the real part of the input
tensor. If
input
is a real (non-complex) tensor, this function just
returns it.
Examples
if (torch_is_installed()) {
if (FALSE) {
torch_real(torch_tensor(c(-1 + 1i, -2 + 2i, 3 - 3i)))
}
}