numpy行向量转列向量

a = array([1, 2, 3])

要将a转变为列向量,可用下面两种方法

a.reshape(-1, 1)

或者

np.array([a]).T

你可能感兴趣的:(numpy行向量转列向量)