R中矩阵的两列相乘的和

时间:2013-02-17 02:14:13

标签: r matrix dot-product

我使用以下内容在R中生成矩阵,

ncolumns = 3
nrows = 10
my.mat <- matrix(runif(ncolumns*nrows), ncol=ncolumns)

此矩阵表示3D中点的坐标。如何计算以下R?

sum of x(i)*y(i)

e.g。如果矩阵是,

x y z
1 2 3
4 5 6

然后输出= 1*2 + 4*5

我正在努力学习R.所以任何帮助都会非常感激。

由于

3 个答案:

答案 0 :(得分:6)

您正在寻找%*%的功能。

ncolumns = 3
nrows = 10

my.mat <- matrix(runif(ncolumns*nrows), ncol=ncolumns)

(my.answer <- my.mat[,1] %*% my.mat[,2])

#       [,1]
# [1,] 1.519

答案 1 :(得分:2)

你只是这样做:

#  x is the first column; y is the 2nd
sum(my.mat[i, 1] * my.mat[i, 2])

现在,如果您想为列命名,可以直接引用它们

colnames(my.mat) <- c("x", "y", "z")

sum(my.mat[i, "x"] * my.mat[i, "y"])

# or if you want to get the product of each i'th element 
#  just leave empty the space where the i would go
sum(my.mat[ , "x"] * my.mat[ , "y"])

答案 2 :(得分:1)

每列由[]中的第二个参数指定,所以

my_matrix[,1] + my_matrix[,2] 

就是你所需要的一切。