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


Julia indexin用法及代碼示例


用法:

indexin(a, b)

a 中的每個值返回一個數組,該數組包含 b 中的第一個索引,該值是 b 的成員。輸出數組包含 nothing 隻要 a 不是 b 的成員。

另請參閱: sortperm findfirst

例子

julia> a = ['a', 'b', 'c', 'b', 'd', 'a'];

julia> b = ['a', 'b', 'c'];

julia> indexin(a, b)
6-element Vector{Union{Nothing, Int64}}:
 1
 2
 3
 2
  nothing
 1

julia> indexin(b, a)
3-element Vector{Union{Nothing, Int64}}:
 1
 2
 3

相關用法


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