Ruby中的lgamma()函數返回兩個數字,一個表示值的對數伽瑪,另一個表示值的伽瑪符號。
用法: Math.lgamma(value)
參數:該函數采用一個強製性參數值,該參數值返回對數伽瑪及其符號。
返回值:該函數返回兩個數字,其中一個表示值的對數伽瑪,另一個表示值的伽瑪符號。
例子1:
# Ruby program for lgamma() function
# Assigning values
val1 = 132
val2 = 0
val3 = -23
val4 = 1
# Prints the value returned by lgamma()
puts Math.lgamma(val1)
puts
puts Math.lgamma(val2)
puts
puts Math.lgamma(val3)
puts
puts Math.lgamma(val4)
輸出:
511.00802266523596 1 Infinity 1 Infinity 1 0.0 1
例子2:
# Ruby program for lgamma() function
# Assigning values
val1 = -1
val2 = 2
val3 = -2
val4 = -9
# Prints the value returned by lgamma()
puts Math.lgamma(val1)
puts
puts Math.lgamma(val2)
puts
puts Math.lgamma(val3)
puts
puts Math.lgamma(val4)
輸出:
Infinity 1 0.0 1 Infinity 1 Infinity 1
參考: https://devdocs.io/ruby~2.5/math#method-c-lgamma
相關用法
- Ruby Math erf()用法及代碼示例
- Ruby Math exp()用法及代碼示例
- Ruby Math log()用法及代碼示例
- Ruby Math cos()用法及代碼示例
- Ruby Math tan()用法及代碼示例
- Ruby Math sin()用法及代碼示例
- Ruby Math acos()用法及代碼示例
- Ruby Math cosh()用法及代碼示例
- Ruby Math hypot()用法及代碼示例
- Ruby Math asinh()用法及代碼示例
- Ruby Math frexp()用法及代碼示例
- Ruby Math acosh()用法及代碼示例
- Ruby Math asin()用法及代碼示例
- Ruby Math erfc()用法及代碼示例
- Ruby Math log10()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Math lgamma() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。