我想制作一个矩阵,在第一个程序中,我无法理解它有多少行,在程序中我将使用" vstack"将每一行添加到矩阵中。
这些矩阵的每一行都包含100个元素,一些字符串和一些浮点数。
Y=[]
以后在程序中我将在y数组中创建一个新行,我想将它添加到Y.
Y=numpy.vstack([Y,y])
错误:
return _nx.concatenate([atleast_2d(_m) for _m in tup], 0)
ValueError: all the input array dimensions except for the concatenation axis must match exactly
我知道使用" vstack"我需要" Y"与y相同的维度,但在这里我不知道如何定义它。
我也是这样试过的:
Y=[]
后来使用h从0 Y[h]=y
错误:IndexError: list assignment index out of range