shaoheshaohe 发表于 2019-9-6 20:22:09

numpy的升维和降维


[*]numpy的升维
将(2,)变成(2,1)

a = np.array()b = np.expand_dims(a, axis=1)



[*]numpy的降维
将(2,1)变成(2,)

a = np.array([,])b = np.squeeze(a)






页: [1]
查看完整版本: numpy的升维和降维