當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Julia firstindex用法及代碼示例


用法:

firstindex(collection) -> Integer
firstindex(collection, d) -> Integer

返回 collection 的第一個索引。如果給定 d,則沿維度 d 返回 collection 的第一個索引。

語法 A[begin]A[1, begin] 分別低於 A[firstindex(A)]A[1, firstindex(A, 2)]

另請參閱: first axes lastindex nextind

例子

julia> firstindex([1,2,4])
1

julia> firstindex(rand(3,4,5), 2)
1

相關用法


注:本文由純淨天空篩選整理自julialang.org 大神的英文原創作品 Base.firstindex — Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。