gpt4 book ai didi

python - 相当于 numpy.unique 的 2D

转载 作者:行者123 更新时间:2023-11-28 18:29:37 26 4
gpt4 key购买 nike

<分区>

我在 Nx2 numpy.ndarray 中有一组离散坐标。

我想获取每个这些唯一坐标集的计数和索引。 numpy.unique正是这样做的,但对于标量元素。

是否有一些干净的方法可以使用 numpy 来做到这一点?

例子:

#input
coor = np.array([[10,10],[12,9],[10,5],[12,9]])
#output
unique_count = np.array([1,2,1])
unique_index = np.array([0,1,2]) #1 could also be 3

编辑:unique count,将给出每个唯一值的计数,即:1 of [10,10],2 of [12,9][10,5] 中的 1 个。然后可以找到与 coor[unique_index]

对应的值

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