在 R 编程中计算一个值的双曲正切 – tanh()函数
R 语言中的tanh()
函数用于计算作为参数传递给它的数值的双曲正切。
Syntax: tanh(x)
Parameter:
x: Numeric value
示例 1:
# R code to calculate hyperbolic tangent of a value
# Assigning values to variables
x1 <- -90
x2 <- -30
# Using tanh() Function
tanh(x1)
tanh(x2)
输出:
[1] -1
[1] -1
示例 2:
# R code to calculate hyperbolic tangent of a value
# Assigning values to variables
x1 <- pi
x2 <- pi / 3
# Using tanh() Function
tanh(x1)
tanh(x2)
输出:
[1] 0.9962721
[1] 0.7807144