Я не могу складывать numpy массивы в новое измерение из-за следующей проблемы:
>>> a = np.zeros(shape=(100,100))
>>> b = np.zeros(shape=(100,100))
>>> c = np.stack((a, b))
>>> c.shape
(2, 100, 100)
>>> d = np.zeros(shape=(100,100))
>>> c = np.stack((c, d))
Traceback (most recent call last):
File "/lib/python3.7/site-packages/numpy/core/shape_base.py", line 426, in stack
raise ValueError('all input arrays must have the same shape')
ValueError: all input arrays must have the same shape
Я собираюсь использовать его в al oop следующим образом:
final = None
for next_mat in mats:
final = next_mat if final is None else np.stack((final, next_mat))
Как мне этого добиться? Спасибо!