使用numpy创建矩阵的Python程序

通过使用numpy类,我们可以使用两种方法创建矩阵。

  1. 使用 numpy.array()

    mat = numpy.array([[10,20,30],[40,50,60],[70,70,90]])
  2. 使用 numpy.matrix()

    mat = numpy.matrix("10 20 30; 40 50 60; 70 80 90")

考虑下面的程序,

# 使用numpy创建Python矩阵

# 导入numpy

import numpy as np

# creating matrix using numpy.array()mat1 = np.array([[10,20,30],[40,50,60],[70,70,90]])

# 打印矩阵

print("mat1...")

print(mat1)

# creating matrix using numpy.matrix()mat2 = np.matrix("10 20 30; 40 50 60; 70 80 90")

# 打印矩阵

print("mat2...")

print(mat2)

输出结果

mat1...

[[10 20 30]

 [40 50 60]

 [70 70 90]]

mat2...

[[10 20 30]

 [40 50 60]

 [70 80 90]]

以上是 使用numpy创建矩阵的Python程序 的全部内容, 来源链接: utcz.com/z/351366.html

回到顶部