关于numpy向量的说明
Posted So istes immer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于numpy向量的说明相关的知识,希望对你有一定的参考价值。
使用向量时,不要去使用秩为1的数组,去使用nx1或者1xn的矩阵
import numpy as np
a = np.random.randn(4) # 这是秩为1的数组
print(a)
print(a.shape)
print(a.T)
print(np.dot(a, a.T))
a = np.random.randn(4, 1) # 这是4x1的矩阵
print(a)
print(a.shape)
print(a.T)
print(np.dot(a, a.T))
以上是关于关于numpy向量的说明的主要内容,如果未能解决你的问题,请参考以下文章