本文简要介绍ruby语言中 Math.gamma
的用法。
用法
gamma(x) → Float
计算 x 的伽马函数。
请注意,对于整数 n > 0,gamma(n) 与 fact(n-1) 相同。但是 gamma(n) 返回浮点数并且可以是近似值。
def fact(n) (1..n).inject(1) {|r,i| r*i } end
1.upto(26) {|i| p [i, Math.gamma(i), fact(i-1)] }
#=> [1, 1.0, 1]
# [2, 1.0, 1]
# [3, 2.0, 2]
# [4, 6.0, 6]
# [5, 24.0, 24]
# [6, 120.0, 120]
# [7, 720.0, 720]
# [8, 5040.0, 5040]
# [9, 40320.0, 40320]
# [10, 362880.0, 362880]
# [11, 3628800.0, 3628800]
# [12, 39916800.0, 39916800]
# [13, 479001600.0, 479001600]
# [14, 6227020800.0, 6227020800]
# [15, 87178291200.0, 87178291200]
# [16, 1307674368000.0, 1307674368000]
# [17, 20922789888000.0, 20922789888000]
# [18, 355687428096000.0, 355687428096000]
# [19, 6.402373705728e+15, 6402373705728000]
# [20, 1.21645100408832e+17, 121645100408832000]
# [21, 2.43290200817664e+18, 2432902008176640000]
# [22, 5.109094217170944e+19, 51090942171709440000]
# [23, 1.1240007277776077e+21, 1124000727777607680000]
# [24, 2.5852016738885062e+22, 25852016738884976640000]
# [25, 6.204484017332391e+23, 620448401733239439360000]
# [26, 1.5511210043330954e+25, 15511210043330985984000000]
相关用法
- Ruby Math.acosh用法及代码示例
- Ruby Math.asinh用法及代码示例
- Ruby Math.sinh用法及代码示例
- Ruby Math.cbrt用法及代码示例
- Ruby Math.log10用法及代码示例
- Ruby Math.atan用法及代码示例
- Ruby Math.asin用法及代码示例
- Ruby Math.erf用法及代码示例
- Ruby Math.cosh用法及代码示例
- Ruby Math.tan用法及代码示例
- Ruby Math.erfc用法及代码示例
- Ruby Math.tanh用法及代码示例
- Ruby Math.lgamma用法及代码示例
- Ruby Math.frexp用法及代码示例
- Ruby Math.exp用法及代码示例
- Ruby Math.ldexp用法及代码示例
- Ruby Math.acos用法及代码示例
- Ruby Math.sqrt用法及代码示例
- Ruby Math.cos用法及代码示例
- Ruby Math.atan2用法及代码示例
- Ruby Math.atanh用法及代码示例
- Ruby Math.sin用法及代码示例
- Ruby Math.log2用法及代码示例
- Ruby Math.hypot用法及代码示例
- Ruby Math.log用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Math.gamma。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。