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
相关用法
- R语言 asinh()用法及代码示例
- R语言 acosh()用法及代码示例
- R语言 is.numeric()用法及代码示例
- R语言 cosh()用法及代码示例
- R语言 sinh()用法及代码示例
- R语言 tanh()用法及代码示例
- R语言 data.matrix()用法及代码示例
- R语言 dunif()用法及代码示例
- R语言 lgamma()用法及代码示例
- R语言 digamma()用法及代码示例
- R语言 trigamma()用法及代码示例
- R语言 qcauchy()用法及代码示例
- R语言 qlogis()用法及代码示例
- R语言 qlnorm()用法及代码示例
- R语言 qpois()用法及代码示例
- R语言 qnbinom()用法及代码示例
- R语言 ecdf()用法及代码示例
- R语言 pf()用法及代码示例
- R语言 qf()用法及代码示例
- R语言 qweibull()用法及代码示例
- R语言 qtukey()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Compute the Hyperbolic arctangent of numeric data in R Programming – atanh() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。