Skip to contents

Cosh

Usage

torch_cosh(self)

Arguments

self

(Tensor) the input tensor.

cosh(input, out=NULL) -> Tensor

Returns a new tensor with the hyperbolic cosine of the elements of input.

outi=cosh(inputi)

Examples

if (torch_is_installed()) {

a = torch_randn(c(4))
a
torch_cosh(a)
}
#> torch_tensor
#>  1.5224
#>  1.2592
#>  1.9558
#>  1.0356
#> [ CPUFloatType{4} ]