Ruby Math erfc()函数

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程