python中repeat函數用法

repeat()函數用法:

np.repeat(3, 4) array([3, 3, 3, 3]) x = np.array([[1,2],[3,4]]) np.repeat(x, 2) array([1, 1, 2, 2, 3, 3, 4, 4]) np.repeat(x, 3, axis=1) #沿着縱軸方向重複,增加列數 array([[1, 1, 1, 2, 2, 2], [3, 3, 3, 4, 4, 4]]) np.repeat(x, [1, 2], axis=0) #沿着橫軸方向重複,增加行數,分別為一次和兩次 array([[1, 2], [3, 4], [3, 4]])