当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia promote_shape用法及代码示例


用法:

promote_shape(s1, s2)

检查两个数组形状的兼容性,允许尾随单例维度,并返回具有更多维度的形状。

例子

julia> a = fill(1, (3,4,1,1,1));

julia> b = fill(1, (3,4));

julia> promote_shape(a,b)
(Base.OneTo(3), Base.OneTo(4), Base.OneTo(1), Base.OneTo(1), Base.OneTo(1))

julia> promote_shape((2,3,1,4), (2, 3, 1, 4, 1))
(2, 3, 1, 4, 1)

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.promote_shape — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。