Numpy: find first index of value fast(Numpy:快速找到第一个价值索引)
问题描述
如何在 Numpy 数组中找到第一次出现的数字的索引?速度对我来说很重要.我对以下答案不感兴趣,因为它们会扫描整个数组并且在发现第一次出现时不会停止:
How can I find the index of the first occurrence of a number in a Numpy array? Speed is important to me. I am not interested in the following answers because they scan the whole array and don't stop when they find the first occurrence:
itemindex = numpy.where(array==item)[0][0]
nonzero(array == item)[0][0]
注意 1:该问题的答案似乎都不相关 是否有一个 Numpy 函数可以返回数组中某物的第一个索引?
Note 1: none of the answers from that question seem relevant Is there a Numpy function to return the first index of something in an array?
注意 2:使用 C 编译的方法优于 Python 循环.
Note 2: using a C-compiled method is preferred to a Python loop.
推荐答案
有一个针对 Numpy 2.0.0 计划的功能请求:https://github.com/numpy/numpy/issues/2269
There is a feature request for this scheduled for Numpy 2.0.0: https://github.com/numpy/numpy/issues/2269
这篇关于Numpy:快速找到第一个价值索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Numpy:快速找到第一个价值索引


基础教程推荐
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01