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


Julia rotr90用法及代码示例


用法一

rotr90(A)

将矩阵A 向右旋转 90 度。

例子

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

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

用法二

rotr90(A, k)

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

例子

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

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

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

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

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

相关用法


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