numpy:找到范围内元素的索引

numpy:找到范围内元素的索引,第1张

numpy:找到范围内元素索引

您可以

np.where
用来获取索引并
np.logical_and
设置两个条件:

import numpy as npa = np.array([1, 3, 5, 6, 9, 10, 14, 15, 56])np.where(np.logical_and(a>=6, a<=10))# returns (array([3, 4, 5]),)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5616673.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存