def test_withcol_vec_middle(): M1 = Mat([1, 2], [3, 4]) M2 = Mat([1, 5, 2], [3, 6, 4]) M3 = M1.append_col([5, 6], index=1) assert M2 == M3
def test_withcol_vec(): M1 = Mat([1, 2], [3, 4]) M2 = Mat([1, 2, 5], [3, 4, 6]) M3 = M1.append_col([5, 6]) assert M2 == M3