当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 lfactorial()用法及代码示例


R 语言中的 lfactorial() 函数用于计算 x 阶乘的自然对数,即 ln(x!)。

用法: lfactorial(x)

参数:
x:正数值

范例1:


# R program to illustrate
# lfactorial function
  
# Calling the lfactorial() function
lfactorial(0)
lfactorial(1)
lfactorial(5)

输出:

[1] 0
[1] 0
[1] 4.787492

范例2:


# R program to illustrate
# lfactorial function
  
# Calling the lfactorial() function
lfactorial(-4)

输出:

[1] Inf
Warning message:
In lfactorial(-4):value out of range in 'lgamma'

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Compute the Natural Logarithm of Factorial in R Programming – lfactorial() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。