📜  在 R 编程中计算 Gamma函数的绝对值的自然对数 – lgamma()函数

📅  最后修改于: 2022-05-13 01:55:13.265000             🧑  作者: Mango

在 R 编程中计算 Gamma函数的绝对值的自然对数 – lgamma()函数

R 语言中的lgamma()函数用于计算使用 gamma函数计算的数值向量的绝对 gamma 值的自然对数。
lgamma函数基本上是,

lgamma(x) = ln(factorial(x - 1))

示例 1:

# R program to calculate the
# natural logarithm of gamma value
  
# Calling lgamma Function
lgamma(2)
lgamma(3)
lgamma(5)

输出:

[1] 0
[1] 0.6931472
[1] 3.178054

示例 2:

# R program to calculate the lgamma value
  
# Creating vectors
x1 <- c(2, 3, 5)
x2 <- c(6, 7, 8)
x3 <- c(-1, -2, -3)
  
# Calling lgamma() Function
lgamma(x1)
lgamma(x2)
lgamma(x3)

输出:

[1] 0.0000000 0.6931472 3.1780538
[1] 4.787492 6.579251 8.525161
[1] Inf Inf Inf
Warning messages:
1: value out of range in 'lgamma' 
2: value out of range in 'lgamma' 
3: value out of range in 'lgamma' 

在这里,在上面的代码中,为负数值向量生成了 NaN。