R语言中的cosh()函数用于计算作为参数传递给它的数值的双曲余弦值。
用法: cosh(x)
Parameter:
x: Numeric value
范例1:
Python3
# R code to calculate cosine of a value
# Assigning values to variables
x1 <- 90
x2 <- 30
# Using cosh() Function
cosh(x1)
cosh(x2)
输出:
[1] 6.102016e+38 [1] 5.343237e+12
范例2:
Python3
# R code to calculate cosine of a value
# Assigning values to variables
x1 <- pi
x2 <- pi / 3
# Using cosh() Function
cosh(x1)
cosh(x2)
输出:
[1] 11.59195 [1] 1.600287
相关用法
- R语言 sinh()用法及代码示例
- R语言 tanh()用法及代码示例
- R语言 acos()用法及代码示例
- R语言 cos()用法及代码示例
- R语言 acos()用法及代码示例
- R语言 cospi()用法及代码示例
- R语言 atanh()用法及代码示例
- R语言 asinh()用法及代码示例
- R语言 acosh()用法及代码示例
- R语言 sin()用法及代码示例
- R语言 tan()用法及代码示例
- R语言 asin()用法及代码示例
- R语言 atan()用法及代码示例
- R语言 factorial()用法及代码示例
- R语言 choose()用法及代码示例
- R语言 abs()用法及代码示例
- R语言 charToRaw()用法及代码示例
- R语言 deg2rad()用法及代码示例
- R语言 rad2deg()用法及代码示例
- R语言 exp()用法及代码示例
- R语言 cumprod()用法及代码示例
- R语言 colSums()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Calculate Hyperbolic cosine of a value in R Programming – cosh() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。