當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。