numpy重新排列最小差异
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置:
查找第一个字段和最后一个字段之间的差异最大值的索引。
使用该索引检索记录
Set up:
Find the index of the maximum of the difference between first field and last field.
Retrieve the record using that index