是否有一个 numpy 的“最大减最小”?功能?

发布于 2025-01-06 23:41:14 字数 237 浏览 0 评论 0原文

是否有一个 numpy 函数可以为给定的 numpy 数组提供其最大值 - 最小值,即 numpy.max(a) - numpy.min(a) ?

例如

numpy.xxx([4,3,2, 6] = 4 since max = 6, min = 2, 6 - 4 = 2)

原因:性能提高,因为 max 和 min 会导致数组迭代两次(在我的例子中是 750 万或更多数字)。

Is there a numpy function that gives for a given numpy array its maximum - minimum value, i.e. numpy.max(a) - numpy.min(a) ?

e.g.

numpy.xxx([4,3,2, 6] = 4 since max = 6, min = 2, 6 - 4 = 2)

Reason: performance increase since max and min would cause twice the iteration of the array (which is in my case 7.5 million or more numbers).

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

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

发布评论

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

评论(1

素手挽清风 2025-01-13 23:41:14

确实有这样一个函数——它被称为 numpy。 ptp() 表示“峰峰值”。

Indeed there is such a function -- it's called numpy.ptp() for "peak to peak".

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