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


Julia last()用法及代码示例


这个last()是 julia 中的一个内置函数,用于返回指定可迭代集合的最后一个元素。

用法: last(coll)

参数:

  • coll:指定的可迭代集合。

返回值:它返回指定可迭代集合的最后一个元素。

范例1:




# Julia program to illustrate 
# the use of last() method
   
# Getting the last element of 
# the specified iterable collection
# or 1D array
println(last(1:2:3))
println(last(5:10))
println(last([3, 5, 7, 9]))
println(last([2, 4, 6, 8]))

输出:

3
10
9
8

范例2:


# Julia program to illustrate 
# the use of last() method
   
# Getting the last element of 
# the specified 2D and 3D array
println(last([3 5; 7 9]))
println(last(["a" "b"; "c" "d"]))
println(last(cat([1 2; 3 4], [5 6; 7 8],
                 [2 2; 3 4], dims = 3)))
println(last(cat(["a" "b"; "c" "d"], 
                 ["e" "f"; "g" "h"], 
                 ["i" "j"; "k" "l"], dims = 3)))

输出:




相关用法


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