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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。