當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。