给定一个包含索引列表的1d
np.ndarray
,该索引为True
:[1, 2, 4]
,以及目标np.ndarray
:6
的长度
如何快速构建实际的np.ndarray
,它应该是[False, True, True, False, True, False]
idx = [1,2,3]
s = 6
a = np.zeros(s,dtype=bool)
a[idx] = True
输出:
[False True True True False False]