Numpy 的 tile() 用于叠加(复制)指定的数据结构。
tile()方法语法:
tile(dataStructure, (shape);
dataStructure
返回叠加得到的数据结构,一般是ndarray。
以下实例展示了tile()函数的使用方法: