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


Julia circshift用法及代码示例


用法:

circshift(A, shifts)

循环移位,即旋转数组中的数据。第二个参数是一个元组或向量,给出在每个维度上的移动量,或者一个整数,仅在第一维中移动。

另请参阅: circshift! circcopy! bitrotate <<

例子

julia> b = reshape(Vector(1:16), (4,4))
4×4 Matrix{Int64}:
 1  5   9  13
 2  6  10  14
 3  7  11  15
 4  8  12  16

julia> circshift(b, (0,2))
4×4 Matrix{Int64}:
  9  13  1  5
 10  14  2  6
 11  15  3  7
 12  16  4  8

julia> circshift(b, (-1,0))
4×4 Matrix{Int64}:
 2  6  10  14
 3  7  11  15
 4  8  12  16
 1  5   9  13

julia> a = BitArray([true, true, false, false, true])
5-element BitVector:
 1
 1
 0
 0
 1

julia> circshift(a, 1)
5-element BitVector:
 1
 1
 1
 0
 0

julia> circshift(a, -1)
5-element BitVector:
 1
 0
 0
 1
 1

相关用法


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