在 R 编程中计算数值数据的双曲反余弦 - acosh()函数
R 语言中的acosh()
函数用于计算数值数据的双曲反余弦值。
Syntax:acosh(x)
Parameters:
x: Numeric value, array or vector
示例 1:
# R program to illustrate
# acosh function
# Calling acosh() function over
# different numbers
acosh(0)
acosh(1)
输出:
[1] NaN
[1] 0
示例 2:
# R program to illustrate
# acosh function
# Calling acosh() function over
# different numbers
acosh(3 / 2)
acosh(2)
输出:
[1] 0.9624237
[1] 1.316958