Skip to contents

Element-wise inverse hyperbolic cosine. You can also use acosh().

Usage

nv_acosh(x)

Arguments

x

(arrayish)
Input array.

Value

arrayish
Has the same shape and data type as the input.

See also

prim_acosh() for the underlying primitive.

Examples

x <- nv_array(c(1, 2, 10))
acosh(x)
#> AnvlArray
#>  0.0000
#>  1.3170
#>  2.9932
#> [ CPUf32{3} ]