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
相关用法
- R语言 digamma()用法及代码示例
- R语言 lgamma()用法及代码示例
- R语言 qcauchy()用法及代码示例
- R语言 qlogis()用法及代码示例
- R语言 qlnorm()用法及代码示例
- R语言 qpois()用法及代码示例
- R语言 qnbinom()用法及代码示例
- R语言 ecdf()用法及代码示例
- R语言 pf()用法及代码示例
- R语言 qf()用法及代码示例
- R语言 qweibull()用法及代码示例
- R语言 qtukey()用法及代码示例
- R语言 qsignrank()用法及代码示例
- R语言 qwilcox()用法及代码示例
- R语言 integrate()用法及代码示例
- R语言 qgeom()用法及代码示例
- R语言 qunif()用法及代码示例
- R语言 cospi()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Compute the Second Derivative of the Logarithmic value of the gamma Function in R Programming – trigamma() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。