- numpy.tile 函数
函数介绍
help(numpy.tile)
Help on function tile in module numpy.lib.shape_base:
tile(A, reps)
Construct an array by repeating A the number of times given by reps.
举例如下
numpy.tile([1,2],[1,2,3,4])#从后(内)往前(外)对原数组内容进行拓展,因为对于reps来讲,越在前代表维度越高
array([[[[1, 2, 1, 2, 1, 2, 1, 2],
[1, 2, 1, 2, 1, 2, 1, 2],
[1, 2, 1, 2, 1, 2, 1, 2]],
[[1, 2, 1, 2, 1, 2, 1, 2],
[1, 2, 1, 2, 1, 2, 1, 2],
[1, 2, 1, 2, 1, 2, 1, 2]]]])
-
add_subplot(111) 或者 add_subplot(234) 的意思:
其中 add_subplot(xyz) ,x是行数,y是列数,z是把这个图像按照行数和列数分块之后展示第几块。因此 add_subplot(111) 表示将图像分成11块,展示第1块; add_subplot(234) 表示将图像分成23块,展示第4块。