Part of the code for np.tile is: for i, nrep in enumerate(tup): if nrep!=1: c = c.reshape(-1, n).repeat(nrep, 0) In other words, it does repeat on each of ...
確定! 回上一頁