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)
numpy
余談ですが、これは Pythonで配列を拡張する効率的な方法ですか?