numpy重新排列最小差异

发布于 2024-10-20 19:22:22 字数 77 浏览 5 评论 0原文

我有一个 numpy 重新数组,我想找到记录的第一个元素和最后一个元素的差异最大的记录。

有人可以建议一种方法来做到这一点。

I have a numpy recarray I want to find record where difference of 1st element and last element of record is maximum.

can someone suggest a way to do this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橙味迷妹 2024-10-27 19:22:22

设置:

import numpy
ra = numpy.recarray((10,), 'int,int,int')

查找第一个字段和最后一个字段之间的差异最大值的索引。

idx = numpy.argmax(ra['f0']-ra['f2'])

使用该索引检索记录

print ra[idx]

Set up:

import numpy
ra = numpy.recarray((10,), 'int,int,int')

Find the index of the maximum of the difference between first field and last field.

idx = numpy.argmax(ra['f0']-ra['f2'])

Retrieve the record using that index

print ra[idx]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文