Conversión de python3 entre cvxopt.matrix y numpy.array

python: python3.2 cvxopt: 1.1.5 numpy: 1.6.1

Yo leohttp://abel.ee.ucla.edu/cvxopt/examples/tutorial/numpy.html

import cvxopt
import numpy as np
cvxopt.matrix(np.array([[7, 8, 9], [10, 11, 12]]))

tengo

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: non-numeric element in list

Pornp.array(cvxopt.matrix([[7, 8, 9], [10, 11, 12]])), Tengo

array([[b'\x07', b'\n'],
   [b'\x08', b'\x0b'],
   [b'\t', b'\x0c']], 
  dtype='|S8')

Respuestas a la pregunta(3)

Su respuesta a la pregunta