我正在寻找一个通用函数来沿任意数量的维度平铺或重复矩阵任意次数。 Python和Matlab在NumPy的tile和Matlab的repmat函数中具有这些特性。朱莉娅的repmat函数似乎只支持二维数组。
该函数应该看起来像repmatnd(a,(n1,n2,...,nk))。 a是任意维度的数组。第二个参数是一个元组,指定每个维度k重复数组的次数。
知道如何在超过2维上平铺Julia数组吗?在Python中我会使用np.tile和matlab repmat,但Julia中的repmat函数只支持2维。
例如,
x = [1 2 3]
repmatnd(x, 3, 1, 3)
会导致:
1 2 3
1 2 3
1 2 3
1 2 3
1 2 3
1 2 3
1 2 3
1 2 3
1 2 3
而
x = [1 2 3; 1 2 3; 1 2 3]
repmatnd(x, (1, 1, 3))
将导致与以前相同的事情。我想Julia开发人员会在标准库中实现类似的东西,但在那之前,修复它会很不错。
答案 0 :(得分:9)
使用repeat
:
julia> X = [1 2 3]
1x3 Array{Int64,2}:
1 2 3
julia> repeat(X, outer = [3, 1, 3])
3x3x3 Array{Int64,3}:
[:, :, 1] =
1 2 3
1 2 3
1 2 3
[:, :, 2] =
1 2 3
1 2 3
1 2 3
[:, :, 3] =
1 2 3
1 2 3
1 2 3