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


Julia ndims()用法及代码示例


这个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))

输出:




相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Get dimensions of array in Julia – ndims() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。