这个Dims()
是 julia 中的一个内置函数,用于表示指定 AbstractArray 的维度。
用法: Dims(A)
参数:
- A:指定数组
返回值:它返回指定 AbstractArray 的表示维度。
范例1:
# Julia program to illustrate
# the use of Dims() method
# Getting the represented dimensions
# of the specified AbstractArray.
A = [1, 2, 3, 4]
println(Dims(A))
B = (5, 10, 15, 20)
println(Dims(B))
输出:
(1, 2, 3, 4) (5, 10, 15, 20)
范例2:
# Julia program to illustrate
# the use of Dims() method
# Getting the represented dimensions
# of the specified AbstractArray.
A = [1 2 3; 4 5 6]
println(Dims(A))
B = cat([1 2; 3 4], [5 6; 7 8], [2 2; 3 4], dims = 3)
println(Dims(B))
输出:
相关用法
- Julia Array reshape()用法及代码示例
- Julia ndims()用法及代码示例
- Julia size()用法及代码示例
- Julia Array fill()用法及代码示例
- Julia Array findall()用法及代码示例
- Julia Array findprev()用法及代码示例
- Julia Array findnext()用法及代码示例
- Julia Array findfirst()用法及代码示例
- Julia Array findlast()用法及代码示例
- Julia parent()用法及代码示例
- Julia count()用法及代码示例
- Julia isassigned()用法及代码示例
- Julia length()用法及代码示例
- Julia join()用法及代码示例
- Julia eachindex()用法及代码示例
- Julia conj!()用法及代码示例
- Julia vec()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Representing the dimensions of array in Julia – Dims() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。