📜  python numpy 数组布尔索引 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:11.278000             🧑  作者: Mango

代码示例1
x = np.array([1., -1., -2., 3])
x[x < 0] = 20
x

Output:
array([  1.,  20.,  20.,   3.])