索引位置的1的数组

时间:2013-07-31 09:06:15

标签: python numpy matrix scipy

我目前有一个数组中最小值的索引数组。

它看起来像这样:

[[0],
 [1],
 [2],
 [1],
 [0]]

(最大指数为3)

我想要的是一个如下所示的数组:

[[1, 0, 0]
 [0, 1, 0]
 [0, 0, 1]
 [0, 1, 0]
 [1, 0, 0]]

1在最小值的列中。

在numpy中有一种简单的方法吗?

2 个答案:

答案 0 :(得分:6)

使用NumPy播放==

>>> minima = np.array([[0], [1], [2], [1], [0]])
>>> minima == arange(minima.max() + 1)
array([[ True, False, False],
       [False,  True, False],
       [False, False,  True],
       [False,  True, False],
       [ True, False, False]], dtype=bool)
>>> (minima == arange(minima.max() + 1)).astype(int)
array([[1, 0, 0],
       [0, 1, 0],
       [0, 0, 1],
       [0, 1, 0],
       [1, 0, 0]])

答案 1 :(得分:0)

您可以执行的列表

>>> a = [[0], [1], [2], [1], [0]]
>>> N = 3
>>> [[1 if x[0] == i else 0 for i in range(N)] for x in a]
[[1, 0, 0], [0, 1, 0], [0, 0, 1], [0, 1, 0], [1, 0, 0]]