這個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)))
輸出:
相關用法
- Julia first()用法及代碼示例
- Julia findmin()用法及代碼示例
- Julia zero()用法及代碼示例
- Julia parent()用法及代碼示例
- Julia collect()用法及代碼示例
- Julia Array findlast()用法及代碼示例
- Julia ceil()用法及代碼示例
- Julia floor()用法及代碼示例
- Julia min()用法及代碼示例
- Julia axes()用法及代碼示例
- Julia typeof()用法及代碼示例
- Julia pairs()用法及代碼示例
- Julia one()用法及代碼示例
- Julia conj()用法及代碼示例
- Julia max()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Getting last element of an array in Julia – last() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。