摘要: tile(A,reps) 通过重复 reps次数的A 创建一个数组examples:>>> a = np.array([0, 1, 2])>>> np.tile(a, 2)array([0, 1, 2, 0, 1, 2])>>> np.tile(a, (2, 2))array([[0, 1, 2, 0, 1, 2]... 阅读全文
posted @ 2013-08-20 22:07 愚人_同乐 阅读(171) 评论(0) 推荐(0) 编辑