创建一个向量
import numpy as np
#创建一个行向量
vector_row = np.array([1,2,3])
#创建一个列向量
vector_column = np.array([[1],[2],[3]])
print(vector_row)
print(vector_column)
out:
[1 2 3]
[[1]
[2]
[3]]
创建一个矩阵
import numpy as np
#创建一个矩阵
matrix = np.array([[1,2],[1,2],[1,2]])
print(matrix)
out:
array([[1, 2],
[1, 2],
[1, 2]])
也可用mat方法创建矩阵
matrix_object = np.mat([[1,2],[1,2],[1,2]])
print(matrix_object )
out:
matrix([[1, 2],
[1, 2],
[1, 2]])