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


Julia rotl90用法及代码示例


用法一

rotl90(A)

将矩阵A 向左旋转 90 度。

例子

julia> a = [1 2; 3 4]
2×2 Matrix{Int64}:
 1  2
 3  4

julia> rotl90(a)
2×2 Matrix{Int64}:
 2  4
 1  3

用法二

rotl90(A, k)

Left-rotate矩阵A逆时针90度整数k次数。如果 k 是四的倍数(包括零),则相当于 copy

例子

julia> a = [1 2; 3 4]
2×2 Matrix{Int64}:
 1  2
 3  4

julia> rotl90(a,1)
2×2 Matrix{Int64}:
 2  4
 1  3

julia> rotl90(a,2)
2×2 Matrix{Int64}:
 4  3
 2  1

julia> rotl90(a,3)
2×2 Matrix{Int64}:
 3  1
 4  2

julia> rotl90(a,4)
2×2 Matrix{Int64}:
 1  2
 3  4

相关用法


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