sinh()是Ruby中的内置函数,返回以弧度给出的双曲正弦值。传递的值在[-inf,+ inf]范围内。返回的值在[-inf,+ inf]范围内。
用法:Math.sinh(value)
参数:该函数接受一个强制性参数值,该参数值将返回对应的双曲正弦值。
返回值:返回双曲正弦值。
例子1:
#Ruby program for sinh() function
#Assigning values
val1 = 0 val2 = 0.67 val3 = 1 val4 = 2
#Prints the sinh() value
puts Math.sinh(val1)
puts Math.sinh(val2)
puts Math.sinh(val3)
puts Math.sinh(val4)
输出:
0.0 0.7212643714246986 1.1752011936438014 3.626860407847019
例子2:
#Ruby program for sinh() function
#Assigning values
val1 = 131 val2 = -0.9 val3 = -98 val4 = -767
#Prints the sinh() value
puts Math.sinh(val1)
puts Math.sinh(val2)
puts Math.sinh(val3)
puts Math.sinh(val4)
输出:
3.9043355367595756e+56 -1.0265167257081753 -1.8189854738044024e+42 -Infinity
参考:https://devdocs.io/ruby~2.5/math#method-c-sinh
相关用法
- Ruby CMath sinh()用法及代码示例
- Ruby Math exp()用法及代码示例
- Ruby Math erf()用法及代码示例
- Ruby Math cos()用法及代码示例
- Ruby Math log()用法及代码示例
- Ruby Math sin()用法及代码示例
- Ruby Math tan()用法及代码示例
- Ruby Math cbrt()用法及代码示例
- Ruby Math tanh()用法及代码示例
- Ruby Math sqrt()用法及代码示例
- Ruby Math acos()用法及代码示例
- Ruby Math acosh()用法及代码示例
- Ruby Math asin()用法及代码示例
- Ruby Math asinh()用法及代码示例
- Ruby Math log2()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Math sinh() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。