我想提出一個字符串數組的位置,但我得到一個錯誤:我怎樣才能把一個字符串數組
ValueError: could not convert string to float
我的代碼如下:
k = np.ceil(99/8)
rs = np.zeros((int(k), 10))
for i in range(0, int(k)):
rs[i, 0] = "FREQ"
for j in range(1,9):
rs[i, j] = rs_imp[8*k+j, 0]
也許[這篇文章](http://stackoverflow.com/questions/6999617/how-to-assign-a-string-value-to-an-array-in-numpy)是你實際上正在尋找執行。 –