📜  Python| numpy matrix.tolist()(1)

📅  最后修改于: 2023-12-03 15:19:13.904000             🧑  作者: Mango

Python | numpy matrix.tolist()

简介

numpy.matrix.tolist() 函数返回将矩阵作为列表的嵌套列表。

语法
numpy.matrix.tolist()
参数

返回值

返回嵌套列表。

示例
import numpy as np

# 创建矩阵
matrix = np.matrix('1 2; 3 4')

# 转换为嵌套列表
matrix_list = matrix.tolist()

print(matrix_list)

输出结果为:

[[1, 2], [3, 4]]
注意事项
  • 如果矩阵中存在复数,则返回的嵌套列表也会包含复数;
  • 如果矩阵中存在浮点数,则返回的嵌套列表也会包含浮点数。
参考文献