R 語言中的 prod() 函數用於返回其參數中存在的所有值的乘法結果。
用法: prod(…)
參數:
……:數字或複數或邏輯向量
範例1:
# R program to illustrate
# prod function
# Initializing some vectors of element
x <- c(1, 2, 3, 4)
y <- c(0, 2, 4, 6)
z <- c(2.6, 3.7, 1.9)
# Calling the prod() function
prod(x) # 1 × 2 × 3 × 4
prod(y)
prod(z)
輸出:
[1] 24 [1] 0 [1] 18.278
範例2:
# R program to illustrate
# prod function
# Calling the prod() function
prod(1:3) # 1 × 2 × 3
prod(0:8)
prod(2:6)
輸出:
[1] 6 [1] 0 [1] 720
相關用法
- R語言 sum()用法及代碼示例
- R語言 expand.grid()用法及代碼示例
- R語言 seq_along()用法及代碼示例
- R語言 args()用法及代碼示例
- R語言 setdiff()用法及代碼示例
- R語言 intersect()用法及代碼示例
- R語言 setequal()用法及代碼示例
- R語言 is.element()用法及代碼示例
- R語言 union()用法及代碼示例
- R語言 combine()用法及代碼示例
- R語言 ls()用法及代碼示例
- R語言 rm()用法及代碼示例
- R語言 identical()用法及代碼示例
- R語言 beep()用法及代碼示例
- R語言 transform()用法及代碼示例
- R語言 trimws()用法及代碼示例
- R語言 round()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Getting Multiplication of the Objects passed as Arguments in R Language – prod() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。