gpt4 book ai didi

python - 根据 Python 中另外两个数组的值创建数组的子集

转载 作者:太空狗 更新时间:2023-10-30 00:44:58 24 4
gpt4 key购买 nike

我正在使用 Python。如何根据其他两个具有相同长度的向量的值对一个向量进行子选择?

例如这三个向量

c1 = np.array([1,9,3,5])
c2 = np.array([2,2,3,2])
c3 = np.array([2,3,2,3])

c2==2
array([ True, True, False, True], dtype=bool)
c3==3
array([False, True, False, True], dtype=bool)

我想做这样的事情:

elem  = (c2==2 and c3==3)
c1sel = c1[elem]

但是第一条语句会导致错误:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: The truth value of an array with more than one element is ambiguous.
Use a.any() or a.all()

在 Matlab 中,我会使用:

elem  = find(c2==2 & c3==3);
c1sel = c1(elem);

如何在 Python 中执行此操作?

最佳答案

您可以使用 numpy.logical_and :

>>> c1[np.logical_and(c2==2, c3==3)]
array([9, 5])

关于python - 根据 Python 中另外两个数组的值创建数组的子集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23109366/

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