numpy数组的元素除以整数错误

时间:2015-03-26 19:19:33

标签: python arrays numpy

这是使用numpy在python中进行更大练习的一部分。 ClassCMatrix是5000乘800。

arrayofsums = np.sum(ClassCMatrix, axis=0)
    #len of this will be 800
    for x in arrayofsums:
        arrayofsums[x]=arrayofsums[x]/5000

但它给出了一个错误:

for x in arrayofsums:
TypeError: 'numpy.float64' object is not iterable.

我该如何解决?

0 个答案:

没有答案