在R语言中,可以使用 rowSums()
和 colSums()
函数分别求各行和各列的和。
# 创建一个矩阵
matrix <- matrix(1:9, nrow = 3, ncol = 3)
# 求各行之和
row_sums <- rowSums(matrix)
print(row_sums)
输出结果为:
[1] 6 15 24
# 创建一个矩阵
matrix <- matrix(1:9, nrow = 3, ncol = 3)
# 求各列之和
col_sums <- colSums(matrix)
print(col_sums)
输出结果为:
[1] 12 15 18
使用 rowSums()
和 colSums()
函数可以很方便地求出矩阵中各行和各列的和。