atanh()
La función en lenguaje R se utiliza para calcular la arcotangente hiperbólica de datos numéricos.
Sintaxis: atanh(x)
Parámetros:
x: Valor numérico, array o vector.
Ejemplo 1:
# R program to illustrate # atanh function # Calling atanh() function over # different numbers atanh(0) atanh(1) atanh(0.9) atanh(-0.8)
Producción:
[1] 0 [1] Inf [1] 1.472219 [1] -1.098612
Ejemplo 2:
# R program to illustrate # atanh function # Initializing some vectors x <- c(0, 1, 0.9) y <- c(-0.1, 0.1) # Calling atanh() function atanh(x) atanh(y)
Producción:
[1] 0.000000 Inf 1.472219 [1] -0.1003353 0.1003353
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA