numpy.r_ c_

r_ 将几个子array连在一起成为一个大的array

如,a = np.arange(10)

       b = np.arange(10)

c = np.r_(a,b)

会将ab顺着串起来

原文地址:https://www.cnblogs.com/heshangaichirou/p/7114374.html