R中两个向量的乘法排列

Multiply permutations of two vectors in R

我有两个长度为 4 的向量,想要向量排列的乘法:

A=(a1,a2,a3,a4)
B=(b1,b2,b3,b4)

我要:

a1*b1;a1*b2;a1*b3...a4*b4

作为已知顺序的列表或 data.frame row.names=A 和 colnames=B

看看expand.gridouter

combination <- expand.grid(A, B)
combination$Result <- combination$A * combination$B
outer(A, B, FUN = "*")

使用 outer(A,B,'*') 这将 return 一个矩阵

x<-c(1:4)
y<-c(10:14)
outer(x,y,'*')

returns

     [,1] [,2] [,3] [,4] [,5]
[1,]   10   11   12   13   14
[2,]   20   22   24   26   28
[3,]   30   33   36   39   42
[4,]   40   44   48   52   56

如果你想要列表中的结果,你可以做

z<-outer(x,y,'*')
z.list<-as.list(t(z))

head(z.list)returns

[[1]]
[1] 10

[[2]]
[1] 11

[[3]]
[1] 12

[[4]]
[1] 13

[[5]]
[1] 14

[[6]]
[1] 20

这是 x1*y1, x1*y2, x1* y3, x1*y4, x2*y1 ,...(如果你想要 x1*y1, x2*y1, ... 替换 t(z) z)

我们可以试试vapply:

vapply(B, '*', A, FUN.VALUE=numeric(length(A)))