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


Julia parent()用法及代码示例


这个parent()是 julia 中的一个内置函数,用于返回指定数组视图类型(即子数组)的父数组或数组本身(如果它不是视图)。

用法: parent(A)

参数:

  • A:指定的数组或数组视图类型。

返回值:它返回指定数组视图类型(即子数组)的父数组或数组本身,如果它不是视图。

范例1:




# Julia program to illustrate 
# the use of Array parent() method
   
# Getting the parent array of the 
# specified 1D array view type (i.e, SubArray)
# or the array itself if it is not a view.
A = [1, 2, 3, 4];
B = view(A, 2)
println(parent(B))
   
# Getting the parent array of the 
# specified 2D array view type (i.e, SubArray)
# or the array itself if it is not a view.
C = [1 2; 3 4];
D = view(C, 1:2,:)
println(parent(D))

输出:

范例2:


# Julia program to illustrate 
# the use of Array parent() method
   
# Getting the parent array of the 
# specified 1D array view type (i.e, SubArray)
# or the array itself if it is not a view.
A = [1, 2, 3, 4];
println(parent(A))
   
# Getting the parent array of the 
# specified 2D array view type (i.e, SubArray)
# or the array itself if it is not a view.
B = [1 2; 3 4];
println(parent(B))
   
# Getting the parent array of the 
# specified 3D array view type (i.e, SubArray)
# or the array itself if it is not a view.
C = cat([1 2; 3 4], [5 6; 7 8], [2 2; 3 4], dims = 3);
println(parent(C))

输出:




相关用法


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