以上三个函数,主要区别在于能够拓展维度上和重复方式: np.tile() 能够拓展维度,并且整体重复: a = np.array([0,1,2]) np.tile(a,(2,2)) # out # array([[0, 1, 2, 0, 1, 2], [0, 1, 2, 0, 1, 2]]) 2. np.repeat()能够将多维flatten一维后,进行个体重复: b = np.array([[1,2,3],[4,5,6]]) np.repeat(b,3) # out #array([1, 1…