gpt4 book ai didi

python - 在 2d numpy 数组的每一行中找到最小的非零值

转载 作者:行者123 更新时间:2023-12-04 00:16:44 30 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Find the min/max excluding zeros in a numpy array (or a tuple) in python

(6 个回答)


去年关闭。




我试图在 2d numpy 数组的每一行中找到最小的非零值,但还没有找到一个优雅的解决方案。我看过其他一些帖子,但没有一个解决完全相同的问题,例如
Minimum value in 2d arrayMin/Max excluding zeros but in 1d array .
例如对于给定的数组:

x = np.array([[3., 2., 0., 1., 6.], [8., 4., 5., 0., 6.], [0., 7., 2., 5., 0.]])
答案是:
[1., 4., 2.]

最佳答案

一种方法是将零重新分配给 np.inf,然后每行取 min:

np.where(x>0, x, np.inf).min(axis=1)
输出:
array([1., 4., 2.])

关于python - 在 2d numpy 数组的每一行中找到最小的非零值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63209782/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com