在Python中连接数组时遇到错误:
x = np.array([])
while condition:
% some processing
x = np.concatenate([x + new_x])
我得到的错误是:
----> 1 x = np.concatenate([x + new_x])
ValueError: operands could not be broadcast together with shapes (0) (6)
另外,这是在Python中增长numpy
数组的有效方法吗?
答案 0 :(得分:3)
答案 1 :(得分:0)