标签: python numpy
正如标题所说,我正在使用numpy,并希望有一个(n,1)维向量,其中每个单独的元素实际上是一个矩阵。
我找到了这个答案:Matrix of matrices in python。根据该帖子,我尝试编写以下代码:
A,B,C = (np.full((3,3),k) for k in range(3)) D=np.block([[A],[B]]) print(D) D[1]
但是,这并没有给我数组A,而是给了我第一行数组A.
那么,有没有办法在numpy中做到这一点?
由于