Ejemplo n.º 1
0
def test_smith_normal_form_3():
    m = sympy.SparseMatrix(5, 3, {(0, 1): 1, (1, 0): 1,
                                  (4, 2): 1})
    mp, _, _ = smith_normal_form(m)
    assert mp.shape == (3, 3)

    assert (mp - sympy.eye(3)).is_zero_matrix
Ejemplo n.º 2
0
def test_smith_normal_form_2():
    matrix = sympy.eye(3)
    matrix.row_del(1)

    m, _, _ = smith_normal_form(matrix)

    diff = sympy.Matrix([[0, 0, 0], [0, 1, 0], [0, 0, 0]])

    assert (sympy.eye(3) - m) == diff
Ejemplo n.º 3
0
def test_smith_normal_form():

    m = sympy.SparseMatrix(2, 3, {(0, 2): 2, (1, 1): 1})
    mp, _, _ = smith_normal_form(m)
    assert mp.shape == (3, 3)
    assert mp[2, 2] != 0