文章目录
1.一维数组、行向量、列向量
1.1 一维数组
x=np.array([1,2,3])
print(x,x.shape)
#结果#
[1 2 3] (3,)
1.2 行向量
x1=np.array([[1,2,3]])#两层[]
print(x1,x1.shape)
#结果#
[[1 2 3]] (1, 3)
1.3 列向量
x2=np.array([[1],[2],[3]])
print(x2,x2.shape)
#结果#
[[1]
[2]
[3]] (3, 1)
1.4 一维数组转化为行向量/列向量
x=np.array([1,2,3])
x1=x.reshape(1,3)
x2=x.reshape(3,1