numpy矩阵改变维度reshape(-1,1)

numpy矩阵采用reshape()函数来改变维度大小,其中reshape(-1,1)中-1的意思是矩阵的行不关心,例为一列。例如:

转换前:print(x_array.shape)                      结果:(1219,)   

转换公式:x_array = x_array.reshape(-1,1) 

转换后:print(x_array.shape)                      结果:(1219,1)

你可能感兴趣的:(numpy,矩阵,线性代数)