R 語言提供了一個 factorial() 函數,可以計算一個數的階乘,而無需編寫計算階乘的整個代碼。
用法: factorial(x)
參數:
x:必須計算其階乘的數字。
返回:所需數字的階乘。
範例1:
# R program to calculate factorial value
# Using factorial() method
answer1 <- factorial(4)
answer2 <- factorial(-3)
answer3 <- factorial(0)
print(answer1)
print(answer2)
print(answer3)
輸出:
24 NaN 1
範例2:
# R program to calculate factorial value
# Using factorial() method
answer1 <- factorial(c(0, 1, 2, 3, 4))
print(answer1)
輸出:
1 1 2 6 24
相關用法
- R語言 acos()用法及代碼示例
- R語言 cos()用法及代碼示例
- R語言 cosh()用法及代碼示例
- R語言 sin()用法及代碼示例
- R語言 sinh()用法及代碼示例
- R語言 tanh()用法及代碼示例
- R語言 tan()用法及代碼示例
- R語言 asin()用法及代碼示例
- R語言 acos()用法及代碼示例
- R語言 atan()用法及代碼示例
- R語言 choose()用法及代碼示例
- R語言 abs()用法及代碼示例
- R語言 lfactorial()用法及代碼示例
- R語言 charToRaw()用法及代碼示例
- R語言 deg2rad()用法及代碼示例
- R語言 rad2deg()用法及代碼示例
- R語言 exp()用法及代碼示例
- R語言 cumprod()用法及代碼示例
- R語言 colSums()用法及代碼示例
- R語言 colMeans()用法及代碼示例
注:本文由純淨天空篩選整理自spp____大神的英文原創作品 Calculate Factorial of a value in R Programming – factorial() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。