当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Math erf() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。