📌  相关文章
📜  在 Julia 中获取集合的第一个索引 – firstindex() 方法

📅  最后修改于: 2021-11-25 04:45:05             🧑  作者: Mango

firstindex()是 julia 中的一个内置函数,用于返回指定集合的第一个索引。如果给出了维度d ,则返回沿维度 d 的集合的第一个索引。

示例 1:

# Julia program to illustrate 
# the use of firstindex() method
   
# Getting the first index of the specified collection.
println(firstindex(0))
println(firstindex([1, 2, 3]))
println(firstindex([2 4; 5 6]))
println(firstindex([3; 5; 7; 9]))

输出:

示例 2:

# Julia program to illustrate 
# the use of firstindex() method
   
# Getting the first index of the specified 
# collection. If a dimension d is given, 
# return the first index of collection 
# along dimension d.
println(firstindex(rand(1, 2, 3, 4), 1))
println(firstindex(rand(1, 2, 3, 4), 2))
println(firstindex([1, 2, 3], 2))
println(firstindex([2 4; 6 8], 2))
println(firstindex([2; 4; 6; 8], 2))
println(firstindex(cat([1 2; 3 4], [5 6; 7 8], [2 2; 3 4], dims = 3);))

输出: