how to get exact value when I use array? why the result is array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) but not 0.7?
overlap= np.array([0]*10)
tempi = np.zeros(10)
for i in range(10):
for j in range(10):
tempi[j] = 0.7;
overlap[i] = max(tempi)
print(max(tempi))
overlap