如何快速确定矩阵是否是置换矩阵

时间:2015-03-06 09:35:05

标签: python numpy matrix linear-algebra

如何快速确定方形逻辑矩阵是否为置换矩阵?例如,

enter image description here

一个排列矩阵,因为第3行有2个条目1。

PS:permutation matrix是一个方形二进制矩阵,每行和每列只有一个条目1,其他地方只有0。

我定义了一个像

这样的逻辑矩阵
numpy.array([(0,1,0,0), (0,0,1,0), (0,1,1,0), (1,0,0,1)])

这是我的源代码:

#!/usr/bin/env python
import numpy as np

### two test cases
M1 = np.array([
    (0, 1, 0, 0),
    (0, 0, 1, 0),
    (0, 1, 1, 0),
    (1, 0, 0, 1)]);

M2 = np.array([
    (0, 1, 0, 0),
    (0, 0, 1, 0),
    (1, 0, 0, 0),
    (0, 0, 0, 1)]);

### fuction 
def is_perm_matrix(M) :
    for sumRow in np.sum(M, axis=1) :
        if sumRow != 1 :
            return False
    for sumCol in np.sum(M, axis=0) :
        if sumCol != 1 :
            return False
    return True

### print the result
print is_perm_matrix(M1) #False
print is_perm_matrix(M2) #True

有没有更好的实施?

3 个答案:

答案 0 :(得分:3)

这个怎么样:

def is_permuation_matrix(x):
    x = np.asanyarray(x)
    return (x.ndim == 2 and x.shape[0] == x.shape[1] and
            (x.sum(axis=0) == 1).all() and 
            (x.sum(axis=1) == 1).all() and
            ((x == 1) | (x == 0)).all())

快速测试:

In [37]: is_permuation_matrix(np.eye(3))
Out[37]: True

In [38]: is_permuation_matrix([[0,1],[2,0]])
Out[38]: False

In [39]: is_permuation_matrix([[0,1],[1,0]])
Out[39]: True

In [41]: is_permuation_matrix([[0,1,0],[0,0,1],[1,0,0]])
Out[41]: True

In [42]: is_permuation_matrix([[0,1,0],[0,0,1],[1,0,1]])
Out[42]: False

In [43]: is_permuation_matrix([[0,1,0],[0,0,1]])
Out[43]: False

答案 1 :(得分:0)

这是一个简单的非numpy解决方案,假设矩阵是一个列表列表,它只包含整数0或1.如果矩阵包含布尔值,它也能正常运行。

def is_perm_matrix(m):
    #Check rows
    if all(sum(row) == 1 for row in m):
        #Check columns
        return all(sum(col) == 1 for col in zip(*m))
    return False

m1 = [
    [0, 1, 0],
    [1, 0, 0],
    [0, 0, 1],
]

m2 = [
    [0, 1, 0],
    [1, 0, 0],
    [0, 1, 1],
]

m3 = [
    [0, 1, 0],
    [1, 0, 0],
    [1, 0, 0],
]

m4 = [
    [True, False, False],
    [False, True, False],
    [True, False, False],
]

print is_perm_matrix(m1)
print is_perm_matrix(m2)
print is_perm_matrix(m3)
print is_perm_matrix(m4)

<强>输出

True
False
False
False

答案 2 :(得分:0)

一种方法是调用np.sum并传递一个轴参数,这应该生成一个包含所有一个的数组,如果没有,那么你没有一个排列矩阵:

In [56]:

a = np.array([[0,1,0,0],[0,0,1,0],[0,1,1,0],[1,0,0,1]])
a
Out[56]:
array([[0, 1, 0, 0],
       [0, 0, 1, 0],
       [0, 1, 1, 0],
       [1, 0, 0, 1]])

In [57]:

np.all(np.sum(a,axis=0) == np.ones((1,4)), True)
Out[57]:
array([False], dtype=bool)

In [58]:

np.all(np.sum(a,axis=1) == np.ones((1,4)), True)
Out[58]:
array([False], dtype=bool)

In [60]:

np.sum(a, axis=1) == np.ones([1,4])
Out[60]:
array([[ True,  True, False, False]], dtype=bool)
In [59]:

np.sum(a, axis=0) == np.ones([1,4])
Out[59]:
array([[ True, False, False,  True]], dtype=bool)

In [61]:

np.sum(a,axis=0)
Out[61]:
array([1, 2, 2, 1])
In [62]:

np.sum(a,axis=1)
Out[62]:
array([1, 1, 2, 2])