Ver originalimport cvxoptA = matrix([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) print A[:,[0,2]]# [ 1 7]# [ 2 8]# [ 3 9]