'numpy.float64'对象不可迭代

时间:2013-05-31 13:44:12

标签: python numpy iterator

我正在尝试迭代使用numpy.linspace生成的值数组:

slX = numpy.linspace(obsvX, flightX, numSPts)
slY = np.linspace(obsvY, flightY, numSPts)

for index,point in slX:
    yPoint = slY[index]
    arcpy.AddMessage(yPoint)

这段代码在我的办公室电脑上工作正常,但我今天早上坐下来在家里用另一台机器工作,出现了这个错误:

File "C:\temp\gssm_arcpy.1.0.3.py", line 147, in AnalyzeSightLine
  for index,point in slX:
TypeError: 'numpy.float64' object is not iterable

slX只是一个浮点数组,脚本打印内容没有问题 - 只是,显然是通过它们迭代。是什么导致它破坏的建议,以及可能的修复?

1 个答案:

答案 0 :(得分:6)

numpy.linspace()为您提供一维NumPy数组。例如:

>>> my_array = numpy.linspace(1, 10, 10)
>>> my_array
array([  1.,   2.,   3.,   4.,   5.,   6.,   7.,   8.,   9.,  10.])

因此:

for index,point in my_array

无法正常工作。你需要某种带有两个的二维数组 第二维中的元素:

>>> two_d = numpy.array([[1, 2], [4, 5]])
>>> two_d
array([[1, 2], [4, 5]])

现在你可以这样做:

>>> for x, y in two_d:
    print(x, y)

1 2
4 5