Python:根据阈值计算矩阵值

时间:2015-05-26 07:47:43

标签: python sorting numpy

请帮帮我) 我有一个numpy阵列160x160 我需要的是计算其值在值a和b之间的索引量。 我尝试了什么: A - 我的矩阵

for i in A:
   for j in A[i]:
      if A[i,j] < 0.1 and A[i,j]> 0:
          m=collections.Counter(don't know what to write here)

谢谢!

1 个答案:

答案 0 :(得分:1)

以下是评论

的示例扩展

arr为随机数组

In [33]: arr = np.random.rand(160,160)

获取>0 & <0.1

元素的数量
In [34]: ((arr>0) & (arr<0.1)).sum()
Out[34]: 2649