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


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


trigamma()R语言中的函数用于计算使用伽马函数计算的伽马值的自然对数的二阶导数。trigamma函数本质上是,

trigamma(x) = d2(ln(factorial(n-1)))/dx2
用法: trigamma(x)

参数:
x:数字向量

范例1:


# R program to find second derivative 
# of the lgamma value
  
# Calling the trigamma() Function
trigamma(2)
trigamma(4)
trigamma(5.2)

输出:

[1] 0.6449341
[1] 0.283823
[1] 0.2119756

范例2:


# R program to find second derivative 
# of the lgamma value
  
# Creating a vector
x <- c(2.3, 3, 1.2)
  
# Calling the trigamma() Function
trigamma(x)
  
# Calling trigamma() function
# on negative values
trigamma(-2.3)
trigamma(-2)

输出:

[1] 0.5425375 0.3949341 1.2673772
[1] 14.72591
[1] Inf

相关用法


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