Ruby Math exp()函数
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