Ruby Math erf()函数
Ruby中的 erf() 函数返回x的误差函数。它接受范围为[-inf, +inf]的值,返回范围为[-1, +1]的值。
语法 :Math.erf(value)
参数 :该函数接受要返回其错误函数的值。
返回值 :该函数返回错误函数。
例子 1 :
# Ruby program for erf() function
# Assigning values
val1 = 0.98
val2 = -0.9
val3 = 6
val4 = 1
# Prints the erf() value
puts Math.erf(val1)
puts Math.erf(val2)
puts Math.erf(val3)
puts Math.erf(val4)
输出:
0.8342315043402079
-0.7969082124228322
1.0
0.8427007929497149
例2 :
# Ruby program for erf() function
# Assigning values
val1 = 0.67
val2 = -0.12
val3 = 2.4
val4 = 89
# Prints the erf() value
puts Math.erf(val1)
puts Math.erf(val2)
puts Math.erf(val3)
puts Math.erf(val4)
输出:
0.6566277023003051
-0.13475835181992007
0.999311486103355
1.0
参考资料 : https://devdocs.io/ruby~2.5/math#method-c-erf