Ruby中的exp()函数返回e^value的值。它采用[-inf,+ inf]范围内的值,并返回[0,infinity]范围内的答案。
用法: Math.exp(value)
参数:该函数采用要提高到e的幂的值。
返回值:该函数返回e^value的值。
例子1:
# Ruby program for exp() function
# Assigning values
val1 = 0.98
val2 = -0.9
val3 = 6
val4 = 1
# Prints the exp() value
puts Math.exp(val1)
puts Math.exp(val2)
puts Math.exp(val3)
puts Math.exp(val4)
输出:
2.664456241929417 0.4065696597405991 403.4287934927351 2.718281828459045
例子2:
# Ruby program for exp() function
# Assigning values
val1 = 0.67
val2 = -0.12
val3 = 2.4
val4 = 89
# Prints the exp() value
puts Math.exp(val1)
puts Math.exp(val2)
puts Math.exp(val3)
puts Math.exp(val4)
输出:
1.9542373206359396 0.8869204367171575 11.023176380641601 4.4896128191743455e+38
参考: https://devdocs.io/ruby~2.5/math#method-c-exp
相关用法
- Ruby Math log()用法及代码示例
- Ruby Math tan()用法及代码示例
- Ruby Math sin()用法及代码示例
- Ruby Math cos()用法及代码示例
- Ruby Math erf()用法及代码示例
- Ruby Math acos()用法及代码示例
- Ruby Math asinh()用法及代码示例
- Ruby Math asin()用法及代码示例
- Ruby Math acosh()用法及代码示例
- Ruby Math sqrt()用法及代码示例
- Ruby Math cbrt()用法及代码示例
- Ruby Math tanh()用法及代码示例
- Ruby Math sinh()用法及代码示例
- Ruby Math atanh()用法及代码示例
- Ruby Math atan2()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Math exp() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。