import numpy as np
np.tile(A, 2) //重复A阵,行2次,默认行向重复
np.tile(A, (1,1)) //重复A阵,行向1次,列向1次
np.tile(A, (2,4)) //重复A阵,行向2次,列向4次