R语言 计算数字数据的双曲正切 – atanh()函数
R语言中的 atanh() 函数是用来计算数字数据的双曲正切的。
语法: atanh(x)
参数:
x: 数值,数组或向量。
例子 1 :
# R program to illustrate
# atanh function
# Calling atanh() function over
# different numbers
atanh(0)
atanh(1)
atanh(0.9)
atanh(-0.8)
输出
[1] 0
[1] Inf
[1] 1.472219
[1] -1.098612
例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)
输出
[1] 0.000000 Inf 1.472219
[1] -0.1003353 0.1003353