gpt4 book ai didi

Python - 将 numpy 数组分解为正分量和负分量

转载 作者:行者123 更新时间:2023-12-01 03:21:49 26 4
gpt4 key购买 nike

我有形状为 (600,600,3) 的 numpy 数组,其中值为 [-1.0, 1.0]。我想将数组扩展到 (600,600,6),其中原始值被分成高于和低于 0 的数量。一些示例 (1,1,3) 数组,其中函数 foo() 可以解决问题:

>>> a = [-0.5, 0.2, 0.9]
>>> foo(a)
[0.0, 0.5, 0.2, 0.0, 0.9, 0.0] # [positive component, negative component, ...]
>>> b = [1.0, 0.0, -0.3] # notice the behavior of 0.0
>>> foo(b)
[1.0, 0.0, 0.0, 0.0, 0.0, 0.3]

最佳答案

使用切片将最小值/最大值分配给输出数组的不同部分

In [33]: a = np.around(np.random.random((2,2,3))-0.5, 1)

In [34]: a
Out[34]:
array([[[-0.1, 0.3, 0.3],
[ 0.3, -0.2, -0.1]],

[[-0. , -0.2, 0.3],
[-0.1, -0. , 0.1]]])

In [35]: out = np.zeros((2,2,6))

In [36]: out[:,:,::2] = np.maximum(a, 0)

In [37]: out[:,:,1::2] = np.maximum(-a, 0)

In [38]: out
Out[38]:
array([[[ 0. , 0.1, 0.3, 0. , 0.3, 0. ],
[ 0.3, 0. , 0. , 0.2, 0. , 0.1]],

[[-0. , 0. , 0. , 0.2, 0.3, 0. ],
[ 0. , 0.1, -0. , 0. , 0.1, 0. ]]])

关于Python - 将 numpy 数组分解为正分量和负分量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41843585/

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