gpt4 book ai didi

python - 使用 numpy 过滤值

转载 作者:太空宇宙 更新时间:2023-11-04 08:24:51 25 4
gpt4 key购买 nike

我有一个 numpy 零矩阵并且大小 = (4, 8)

x = [[0, 0, 0 , 0, 0, 0, 0, 0],
[0, 0, 0 , 0, 0, 0, 0, 0],
[0, 0, 0 , 0, 0, 0, 0, 0],
[0, 0, 0 , 0, 0, 0, 0, 0],]

此外,我有三个不同的矩阵。

a = [[1, 1, 1 , 1, 1, 1, 1, 1],
[1, 1, 1 , 1, 1, 1, 1, 1],
[1, 1, 1 , 1, 1, 1, 1, 1],
[1, 1, 1 , 1, 1, 1, 1, 1],]

b = [[2, 2, 2 , 2, 2, 2, 2, 2],
[2, 2, 2 , 2, 2, 2, 2, 2],
[2, 2, 2 , 2, 2, 2, 2, 2],
[2, 2, 2 , 2, 2, 2, 2, 2],]

c = [[3, 3, 3 , 3, 3, 3, 3, 3],
[3, 3, 3 , 3, 3, 3, 3, 3],
[3, 3, 3 , 3, 3, 3, 3, 3],
[3, 3, 3 , 3, 3, 3, 3, 3],]

我想得到如下结果

output = [[1, 2, 1, 2, 1, 2, 1, 2],
[2, 3, 2, 3, 2, 3, 2, 3],
[1, 2, 1, 2, 1, 2, 1, 2],
[2, 3, 2, 3, 2, 3, 2, 3],]

矩阵a的值出现在(第0行,第2行)和(第0列,第2列,第4列,第6列)

矩阵b的值出现在第0行、第1行、第2行、第3行,但第0行和第2行的值2出现在第1列、第3列、第3列5, column 7, next in the row 1 and row 3 the value 2 appears in the column 0, column 2, column 4, column 6

矩阵c的值出现在(row 1, row 3) and (column 1, column 3, column 5, column 7)

import numpy as np
h, w = x.shape
output = np.zeros((h, w))

for i in range(h):
for j in range(w):
if (i % 2) == 0 and (j % 2) == 0:
output[i, j] = a[i, j]
elif (i % 2) == 1 and (j % 2) == 1:
output[i, j] = c[i, j]
else:
output[i, j] = b[i, j]
print(output)
'''
output = [[1. 2. 1. 2. 1. 2. 1. 2.]
[2. 3. 2. 3. 2. 3. 2. 3.]
[1. 2. 1. 2. 1. 2. 1. 2.]
[2. 3. 2. 3. 2. 3. 2. 3.]]
'''

我想尽量不用for循环,可以用numpy解决吗?

最佳答案

你可以使用np.choose:

y,x = np.ogrid[:4,:8]
np.choose((y&1)+(x&1),[a,b,c])
# array([[1, 2, 1, 2, 1, 2, 1, 2],
# [2, 3, 2, 3, 2, 3, 2, 3],
# [1, 2, 1, 2, 1, 2, 1, 2],
# [2, 3, 2, 3, 2, 3, 2, 3]])

关于python - 使用 numpy 过滤值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58391075/

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