numpy.array中获取特定元素下标方法

例:寻找array: x 中,数值为0的所有下标,并转换为np.array

index = np.array(np.where(x==0))

你可能感兴趣的:(numpy)