python将矩阵转换为列表

参数为矩阵
返回结果:list列表

numpy.matrix.tolist()

例如:

>>> x = np.matrix(np.arange(12).reshape((3,4))); 
>>>x
matrix([[ 0, 1, 2, 3],
  [ 4, 5, 6, 7],
  [ 8, 9, 10, 11]])
>>> x.tolist()
[[0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10, 11]]

你可能感兴趣的:(Python)