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
相关用法
- Ruby Math cos()用法及代码示例
- Ruby Math exp()用法及代码示例
- Ruby Math log()用法及代码示例
- Ruby Math sin()用法及代码示例
- Ruby Math tan()用法及代码示例
- Ruby Math asinh()用法及代码示例
- Ruby Math hypot()用法及代码示例
- Ruby Math lgamma()用法及代码示例
- Ruby Math acos()用法及代码示例
- Ruby Math frexp()用法及代码示例
- Ruby Math asin()用法及代码示例
- Ruby Math erfc()用法及代码示例
- Ruby Math acosh()用法及代码示例
- Ruby Math cosh()用法及代码示例
- Ruby Math log10()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Math erf() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。