如何在1个变量下存储多个矩阵,以便可以执行计算?

时间:2019-02-04 00:16:32

标签: r list matrix

我希望能够在1个变量下存储许多矩阵,然后依次将它们与其他矩阵混合。我以为清单可以解决问题,但这给我带来了一些问题。

这是我的输入

j = list(matrix(c(0,1,2,3),nrow=2,ncol=2,byrow=TRUE), matrix(c(7,6,5,4),nrow=2,ncol=2,byrow=TRUE))

j[1]
j[1]%*%j[2]
t(j[1])
t(j[1])%*%j[1]

这是我的输出

> j = list(matrix(c(0,1,2,3),nrow=2,ncol=2,byrow=TRUE), matrix(c(7,6,5,4),nrow=2,ncol=2,byrow=TRUE))
> j[1]
[[1]]
     [,1] [,2]
[1,]    0    1
[2,]    2    3

> j[1]%*%j[2]
Error in j[1] %*% j[2] : requires numeric/complex matrix/vector arguments
> t(j[1])
     [,1]     
[1,] Numeric,4
> t(j[1])%*%j[1]
Error in t(j[1]) %*% j[1] : 
  requires numeric/complex matrix/vector arguments

谢谢。

1 个答案:

答案 0 :(得分:0)

当您j[1]时,您会得到

#[[1]]
#     [,1] [,2]
#[1,]    0    1
#[2,]    2    3

这仍然是列表。

class(j[1])
#[1] "list"

相反,您需要的是j[[1]]为矩阵的class

class(j[[1]])
#[1] "matrix"

j[[1]] %*% j[[2]]
#     [,1] [,2]
#[1,]    5    4
#[2,]   29   24

t(j[[1]]) %*% j[[1]]
#     [,1] [,2]
#[1,]    4    6
#[2,]    6   10

我建议您仔细阅读this帖子,以了解索引运算符之间的区别。