digamma()
R語言中的函數用於計算使用伽馬函數計算的伽馬值的對數導數。digamma函數本質上是,
digamma(x) = d(ln(factorial(n-1)))/dx
用法: digamma(x)
參數:
x:數字向量
範例1:
# R program to find logarithmic derivative
# of the gamma value
# Calling the digamma() Function
digamma(2)
digamma(4)
digamma(5.2)
輸出:
[1] 0.4227843 [1] 1.256118 [1] 1.549434
範例2:
# R program to find logarithmic derivative
# of the gamma value
# Creating a vector
x <- c(2.3, 3, 1.2)
# Calling the digamma() Function
digamma(x)
# Calling digamma() function
# on negative values
digamma(-2.3)
digamma(-2)
輸出:
[1] 0.6000399 0.9227843 -0.2890399 [1] 3.317323 [1] NaN Warning message: In digamma(-2):NaNs produced
相關用法
- R語言 trigamma()用法及代碼示例
- R語言 lgamma()用法及代碼示例
- R語言 dunif()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute the Logarithmic Derivative of the gamma Function in R Programming – digamma() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。