TypeError:“ numpy.bool_”对象不可迭代

时间:2020-04-15 15:04:33

标签: python python-3.x boolean

我目前遇到TypeError: 'numpy.bool_' object is not iterable,却不知道为什么。我已经验证了我使用的每个变量。您知道为什么会发生此错误吗?这是我的简化代码,可用于:

import numpy as np


def rad_to_deg(x):
    deg = x*180/np.pi
    return deg

def flag_PA(x,bornes_test):  
    index_0_test = int(np.where(bornes_test==0)[0][0])
    for i in range(index_0_test):
        cond1 = any(bornes_test[i] <= x < bornes_test[i+1])
        cond2 = any(bornes_test[i]+180 <= x < bornes_test[i+1]+180)
        if np.logical_or(cond1,cond2)==True :
            flag_test=i 
    return flag_test


##################################### DATA READING ###########################

# Trouver les fichiers en Bande L et Bande N 


bornes_PA = np.linspace(-180,180,18+1)

lambda_fichier       = np.linspace(3E-6,11E-6)
u_coord_fichier      = np.linspace(1,40)
v_coord_fichier      = np.linspace(1,40)
baseline_fichier     = np.sqrt(np.array(u_coord_fichier)**2+np.array(v_coord_fichier)**2).tolist()
for l in range(len(lambda_fichier)):
    for b in range(len(baseline_fichier)):
        deg = rad_to_deg(np.arctan2(u_coord_fichier[b],v_coord_fichier[b]))
        result = int(flag_PA(deg,bornes_PA))

这是完整的错误:

  line 34, in <module>
    result = int(flag_PA(deg,bornes_PA))

  line 13, in flag_PA
    cond1 = any(bornes_test[i] <= x < bornes_test[i+1])

1 个答案:

答案 0 :(得分:3)

问题在于any试图迭代其参数。

表达式bornes_test[i] <= x < bornes_test[i+1]返回标量numpy.bool_,而不是数组。

因此,any(bornes_test[i] <= x < bornes_test[i+1])试图遍历标量,如错误消息所述。

您似乎可以删除any并获得预期的结果。

相关问题