我有一個看起來像這樣IndexError在numpy的陣列
for a in range(0,128):
for b in range(0,128):
A = np.zeros((1,3))
B = np.zeros((1,3))
for i in range(0,3):
A[i] = I[a,b,i]
但是一個代碼,它給了我下面的錯誤
A[i] = I[a,b,i]
IndexError: index 1 is out of bounds for axis 0 with size 1
謝謝你,提前。
'A'只包含一行,所以'A [1]'會引發一個IndexError。 –