np.tile(A,res)

np.tile(A,res)

np.tile(A,res)函数可对输入的数组,元组或列表进行重复构造,其输出是数组

该函数有两个参数

A:输入的数组,元组或列表

reps:重复构造的形状,可为数组,元组或列表

[ A ⋯ A ⋮ ⋱ ⋮ A ⋯ A ] m × n \left[ \begin{matrix} A& \cdots& A\\ \vdots& \ddots& \vdots\\ A& \cdots& A\\ \end{matrix} \right]_{m×n} AAAA m×n

A为基数组,m×n为元组res的大小

import numpy as np
a = np.array([0,1,2,3])
b = np.tile(a, (2, 3))   # shape可以是一维的,此时可以不用元组表示
print(b)

输出:

[[0 1 2 3 0 1 2 3 0 1 2 3]
 [0 1 2 3 0 1 2 3 0 1 2 3]]

tile中的(2,3)是说a的排列为两行三列

你可能感兴趣的:(numpy,python)