我有一组可能带有负数元素的输入矩阵A
。我也有一组从int
到int
的映射,希望将它们有效地应用于A
上。
示例:
import numpy as np
ind = np.array([-9, -8, -7, -6, -5, -4, -3, -2, -1])
out = np.array([ 1, 2, 3, 4, 5, 6, 7, 8, 9])
# i-th element of ind should return i-th element of out
a = np.array([[-1, -2, -3], [-4, -5, -6], [-7, -8, -9]])
# print(a)
# array([[-1, -2, -3],
# [-4, -5, -6],
# [-7, -8, -9]])
# i want output as
# array([[ 9, 8, 7],
# [ 6, 5, 4],
# [ 3, 2, 1]])
对不起,如果我不能确切地说。
不需要控制从ind
到out
的转换的函数。
我现在唯一想到的就是做出决定并遍历输入矩阵的所有元素。但这会很慢。如何有效地做到这一点?
答案 0 :(得分:3)
我们可以使用np.searchsorted
-
In [43]: out[np.searchsorted(ind,a)]
Out[43]:
array([[9, 8, 7],
[6, 5, 4],
[3, 2, 1]])
对于ind
不一定要排序的一般情况,我们需要使用sorter
arg-
In [44]: sidx = ind.argsort()
In [45]: out[sidx[np.searchsorted(ind,a,sorter=sidx)]]
Out[45]:
array([[9, 8, 7],
[6, 5, 4],
[3, 2, 1]])
答案 1 :(得分:0)
np.where(ind==a[x, y])[0][0]
返回ind
中值a[x,y]
所在的索引。
>>> result = np.zeros(a.shape, dtype=np.int)
>>> for x in range(0, len(a[0])): #rows
... for y in range(0, len(a[1])): #columns
... indexInOut = np.where(ind==a[x, y])[0][0]
... result[x,y] = out[indexInOut]
...
>>> result
array([[9, 8, 7],
[6, 5, 4],
[3, 2, 1]])
>>>