这个ndims()
是 julia 中的一个内置函数,用于返回指定数组 A 的维数。
用法: ndims(A::AbstractArray)
参数:
A:指定数组
返回:它返回指定数组 A 的维数。
范例1:
# Julia program to illustrate
# the use of Array ndims() method
# Finding the number of dimension of
# the specified array A.
A = fill(1, 3);
println(ndims(A))
# Finding the number of dimension of
# the specified array B.
B = fill(1, (3, 3));
println(ndims(B))
# Finding the number of dimension of
# the specified array C.
C = fill(1, (3, 1, 2));
println(ndims(C))
输出:
范例2:
# Julia program to illustrate
# the use of Array ndims() method
# Finding the number of dimension of
# the specified array A.
A = fill(1, 2, 3, 4);
println(ndims(A))
# Finding the number of dimension of
# the specified array B.
B = fill((5, 10), (3, 3));
println(ndims(B))
# Finding the number of dimension of
# the specified array C.
C = fill((5, 10, 15), (3, 1, 2));
println(ndims(C))
输出:
相关用法
- Julia size()用法及代码示例
- Julia Array reshape()用法及代码示例
- Julia Dims()用法及代码示例
- Julia Array findall()用法及代码示例
- Julia Array findprev()用法及代码示例
- Julia Array findnext()用法及代码示例
- Julia Array findfirst()用法及代码示例
- Julia Array findlast()用法及代码示例
- Julia length()用法及代码示例
- Julia sizeof()用法及代码示例
- Julia findlast()用法及代码示例
- Julia length()用法及代码示例
- Julia repeat()用法及代码示例
- Julia SubString()用法及代码示例
- Julia findfirst()用法及代码示例
- Julia first()用法及代码示例
- Julia last()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Get dimensions of array in Julia – ndims() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。