R 語言中的 lfactorial() 函數用於計算 x 階乘的自然對數,即 ln(x!)。
用法: lfactorial(x)
參數:
x:正數值
範例1:
# R program to illustrate
# lfactorial function
# Calling the lfactorial() function
lfactorial(0)
lfactorial(1)
lfactorial(5)
輸出:
[1] 0 [1] 0 [1] 4.787492
範例2:
# R program to illustrate
# lfactorial function
# Calling the lfactorial() function
lfactorial(-4)
輸出:
[1] Inf Warning message: In lfactorial(-4):value out of range in 'lgamma'
相關用法
- R語言 lgamma()用法及代碼示例
- R語言 lchoose()用法及代碼示例
- R語言 factorial()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 digamma()用法及代碼示例
- R語言 trigamma()用法及代碼示例
- 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語言 rf()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Compute the Natural Logarithm of Factorial in R Programming – lfactorial() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。