1.增加维度 高纬度打印出来很不好观察,所以打印出来shape更加容易理解维度的增加, 此外一维向量a=np.array([1,2,3]), a[:,None],相当于变为二维并转置了shape=(3,1) b Out[16]: array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) b.shape Out[17]: (3, 3) b[None,:,:].shape Out[18]: (1, 3, 3) b[:,None,:].shape Out[19]: (3, 1,…