-1
我想從一個numpy的陣列得到片,將它們分配到更大的陣列中分得一杯羹。 切片應該是64長,並且應該從源數組中均勻地取出。 我試過如下:值分配給一個numpy的陣列
r = np.arange(0,magnitude.shape[0],step)
magnitudes[counter:counter+len(r),ch] = magnitude[r:r+64]
我收到以下錯誤,當我試着上面的代碼:
TypeError: only integer arrays with one element can be converted to an index
什麼是最Python的方式來實現切片?
你能舉個例子嗎? –