當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。