Skip to contents

Expm1

Usage

torch_expm1(self)

Arguments

self

(Tensor) the input tensor.

expm1(input, out=NULL) -> Tensor

Returns a new tensor with the exponential of the elements minus 1 of input.

$$ y_{i} = e^{x_{i}} - 1 $$

Examples

if (torch_is_installed()) {

torch_expm1(torch_tensor(c(0, log(2))))
}
#> torch_tensor
#>  0
#>  1
#> [ CPUFloatType{2} ]