torch_isposinf {torch} | R Documentation |
Isposinf
Description
Isposinf
Usage
torch_isposinf(self)
Arguments
self |
(Tensor) the input tensor. |
isposinf(input, *, out=None) -> Tensor
Tests if each element of input
is positive infinity or not.
Examples
if (torch_is_installed()) {
a <- torch_tensor(c(-Inf, Inf, 1.2))
torch_isposinf(a)
}
[Package torch version 0.13.0 Index]