sinh()
R語言中的函數用於計算作為參數傳遞給它的數值的雙曲正弦值。
用法: sinh(x)
參數:
x:數值
範例1:
# R code to calculate hyperbolic sine of a value
# Assigning values to variables
x1 <- -90
x2 <- -30
# Using sinh() Function
sinh(x1)
sinh(x2)
輸出:
[1] -6.102016e+38 [1] -5.343237e+12
範例2:
# R code to calculate hyperbolic sine of a value
# Assigning values to variables
x1 <- pi
x2 <- pi / 3
# Using sinh() Function
sinh(x1)
sinh(x2)
輸出:
[1] 11.54874 [1] 1.249367
相關用法
- R語言 cosh()用法及代碼示例
- R語言 tanh()用法及代碼示例
- R語言 sin()用法及代碼示例
- R語言 asin()用法及代碼示例
- R語言 sinpi()用法及代碼示例
- R語言 atanh()用法及代碼示例
- R語言 asinh()用法及代碼示例
- R語言 acosh()用法及代碼示例
- R語言 acos()用法及代碼示例
- R語言 cos()用法及代碼示例
- R語言 tan()用法及代碼示例
- R語言 acos()用法及代碼示例
- R語言 atan()用法及代碼示例
- R語言 factorial()用法及代碼示例
- R語言 choose()用法及代碼示例
- R語言 abs()用法及代碼示例
- R語言 charToRaw()用法及代碼示例
- R語言 deg2rad()用法及代碼示例
- R語言 rad2deg()用法及代碼示例
- R語言 exp()用法及代碼示例
- R語言 cumprod()用法及代碼示例
- R語言 colSums()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Calculate Hyperbolic sine of a value in R Programming – sinh() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。