Как создать матрицу из списка в Python
import numpy
matrix = numpy.matrix([1, 2, 3, 4])
CompSciGeek
import numpy
matrix = numpy.matrix([1, 2, 3, 4])