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


Ruby Math erfc()用法及代码示例


Ruby中的erfc()函数返回x的互补误差函数。它接受[-inf,+ inf]范围内的值,并返回[0,2]范围内的值。

用法: Math.erfc(value)  

参数:该函数采用要返回其互补误差函数的值。


返回值:该函数返回互补误差函数。

例子1

# Ruby program for erfc() function  
  
# Assigning values 
val1 = 0.98 
val2 = -0.9 
val3 = 6 
val4 = 1 
  
# Prints the erfc() value  
puts Math.erfc(val1) 
puts Math.erfc(val2) 
puts Math.erfc(val3) 
puts Math.erfc(val4)

输出

0.16576849565979213
1.7969082124228322
2.1519736712498916e-17
0.15729920705028513

例子2

# Ruby program for erfc() function  
  
# Assigning values 
val1 = 0.67 
val2 = -0.12 
val3 = 2.4 
val4 = 89 
  
# Prints the erfc() value  
puts Math.erfc(val1) 
puts Math.erfc(val2) 
puts Math.erfc(val3) 
puts Math.erfc(val4)

输出

0.3433722976996949
1.13475835181992
0.0006885138966450789
0.0

参考: https://devdocs.io/ruby~2.5/math#method-c-erfc



相关用法


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