用法一
permutedims(A::AbstractArray, perm)
置换数组 A
的维度。 perm
是一个向量或长度为 ndims(A)
的元组,指定排列。
另见
、permutedims!
、PermutedDimsArray
、transpose
。invperm
例子
julia> A = reshape(Vector(1:8), (2,2,2))
2×2×2 Array{Int64, 3}:
[:, :, 1] =
1 3
2 4
[:, :, 2] =
5 7
6 8
julia> permutedims(A, (3, 2, 1))
2×2×2 Array{Int64, 3}:
[:, :, 1] =
1 3
5 7
[:, :, 2] =
2 4
6 8
julia> B = randn(5, 7, 11, 13);
julia> perm = [4,1,3,2];
julia> size(permutedims(B, perm))
(13, 5, 11, 7)
julia> size(B)[perm] == ans
true
用法二
permutedims(m::AbstractMatrix)
通过在矩阵的对角线上翻转元素来置换矩阵 m
的维度。与 LinearAlgebra
的
的不同之处在于该操作不是递归的。transpose
例子
julia> a = [1 2; 3 4];
julia> b = [5 6; 7 8];
julia> c = [9 10; 11 12];
julia> d = [13 14; 15 16];
julia> X = [[a] [b]; [c] [d]]
2×2 Matrix{Matrix{Int64}}:
[1 2; 3 4] [5 6; 7 8]
[9 10; 11 12] [13 14; 15 16]
julia> permutedims(X)
2×2 Matrix{Matrix{Int64}}:
[1 2; 3 4] [9 10; 11 12]
[5 6; 7 8] [13 14; 15 16]
julia> transpose(X)
2×2 transpose(::Matrix{Matrix{Int64}}) with eltype Transpose{Int64, Matrix{Int64}}:
[1 3; 2 4] [9 11; 10 12]
[5 7; 6 8] [13 15; 14 16]
用法三
permutedims(v::AbstractVector)
将向量 v
重塑为 1 × length(v)
行矩阵。与 LinearAlgebra
的
的不同之处在于该操作不是递归的。transpose
例子
julia> permutedims([1, 2, 3, 4])
1×4 Matrix{Int64}:
1 2 3 4
julia> V = [[[1 2; 3 4]]; [[5 6; 7 8]]]
2-element Vector{Matrix{Int64}}:
[1 2; 3 4]
[5 6; 7 8]
julia> permutedims(V)
1×2 Matrix{Matrix{Int64}}:
[1 2; 3 4] [5 6; 7 8]
julia> transpose(V)
1×2 transpose(::Vector{Matrix{Int64}}) with eltype Transpose{Int64, Matrix{Int64}}:
[1 3; 2 4] [5 7; 6 8]
相关用法
- Julia permute!方法用法及代码示例
- Julia peek用法及代码示例
- Julia pop!用法及代码示例
- Julia prod!用法及代码示例
- Julia powermod用法及代码示例
- Julia parse用法及代码示例
- Julia parentindices用法及代码示例
- Julia pushfirst!用法及代码示例
- Julia position用法及代码示例
- Julia pop!方法用法及代码示例
- Julia push!用法及代码示例
- Julia pairs用法及代码示例
- Julia popfirst!用法及代码示例
- Julia parent用法及代码示例
- Julia pairs()用法及代码示例
- Julia prevind用法及代码示例
- Julia print用法及代码示例
- Julia parentmodule用法及代码示例
- Julia prod用法及代码示例
- Julia prevpow用法及代码示例
- Julia pipeline方法用法及代码示例
- Julia promote_typejoin用法及代码示例
- Julia println用法及代码示例
- Julia promote_shape用法及代码示例
- Julia popat!用法及代码示例
注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.permutedims — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。