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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。