本文简要介绍 python 语言中 numpy.tile
的用法。
用法:
numpy.tile(A, reps)
通过重复 A 由 reps 给出的次数来构造一个数组。
如果代表有长度
d
,结果的维度为max(d, A.ndim)
.如果
A.ndim < d
,A通过添加新轴将其提升为d-dimensional。因此,对于 2-D 复制,形状 (3,) 数组会提升为 (1, 3),对于 3-D 复制,形状 (1, 1, 3) 会提升为 (1, 1, 3)。如果这不是所需的行为,请推广A在调用此函数之前手动更改为d-dimensions。如果
A.ndim > d
,代表被提升为A.ndim 通过在其前面添加 1 来实现。因此对于一个A形状为 (2, 3, 4, 5),a代表(2, 2) 被视为 (1, 1, 2, 2)。注意:虽然可以使用 tile 进行广播,但强烈建议使用 numpy 的广播操作和函数。
- A: array_like
输入数组。
- reps: array_like
A 沿每个轴的重复次数。
- c: ndarray
平铺的输出数组。
参数:
返回:
例子:
>>> 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], [0, 1, 2, 0, 1, 2]]) >>> np.tile(a, (2, 1, 2)) array([[[0, 1, 2, 0, 1, 2]], [[0, 1, 2, 0, 1, 2]]])
>>> b = np.array([[1, 2], [3, 4]]) >>> np.tile(b, 2) array([[1, 2, 1, 2], [3, 4, 3, 4]]) >>> np.tile(b, (2, 1)) array([[1, 2], [3, 4], [1, 2], [3, 4]])
>>> c = np.array([1,2,3,4]) >>> np.tile(c,(4,1)) array([[1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4]])
相关用法
- Python numpy trim_zeros用法及代码示例
- Python numpy testing.rundocs用法及代码示例
- Python numpy testing.assert_warns用法及代码示例
- Python numpy trace用法及代码示例
- Python numpy testing.assert_array_almost_equal_nulp用法及代码示例
- Python numpy tri用法及代码示例
- Python numpy testing.assert_array_less用法及代码示例
- Python numpy testing.assert_raises用法及代码示例
- Python numpy true_divide用法及代码示例
- Python numpy transpose用法及代码示例
- Python numpy testing.assert_almost_equal用法及代码示例
- Python numpy testing.assert_approx_equal用法及代码示例
- Python numpy tanh用法及代码示例
- Python numpy testing.assert_allclose用法及代码示例
- Python numpy testing.decorators.slow用法及代码示例
- Python numpy trapz用法及代码示例
- Python numpy testing.suppress_warnings用法及代码示例
- Python numpy take用法及代码示例
- Python numpy testing.assert_string_equal用法及代码示例
- Python numpy testing.run_module_suite用法及代码示例
- Python numpy testing.assert_array_max_ulp用法及代码示例
- Python numpy take_along_axis用法及代码示例
- Python numpy testing.assert_equal用法及代码示例
- Python numpy triu_indices用法及代码示例
- Python numpy testing.assert_array_equal用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.tile。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。