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


Julia Array findprev()用法及代码示例


这个findprev()是 julia 中的一个内置函数,用于返回指定数组 A 的真元素之前或包含 i 的前一个索引,或者如果没有找到真值则返回零。这里索引或键的值从 1 开始,即第一个元素的索引为 1,第二个元素的索引为 2,依此类推。

用法:
findprev(A, i)
or
findprev(predicate::Function, A, i)

参数:

  • A:指定数组
  • i:指定值
  • Predicate Function:根据指定的参数确定某事是真还是假

返回值:它返回指定数组 A 的真元素之前或包含 i 的前一个索引,如果没有找到真值,则返回零。

范例1:




# Julia program to illustrate 
# the use of Array findprev() method
   
# Finding index of previous true value
# before or including index 1 from 
# the 1D array A
A = [false, true, true, false]
println(findprev(A, 2))
   
# Finding index of previous true value 
# before or including index (1, 1) from 
# the 2D array B of size 2 * 2
B = [true false; true false]
println(findprev(B, CartesianIndex(1, 1)))
   
# Finding index of previous true value
# before or including index (1, 2, 1) from 
# the 3D array C of size 2 * 2*2
C = cat([true false; true false], 
        [false true; true false],
        [true false; true true], dims = 3)
println(findprev(C, CartesianIndex(1, 2, 1)))

输出:

范例2:


# Julia program to illustrate 
# the use of Array findprev() method
   
# Finding index of previous even value
# before or including index 3 from 
# the 1D array A
A = [1, 2, 5, 6]
println(findprev(iseven, A, 3))
   
# Finding index of previous even value
# before or including index (2, 2) from 
# the 2D array B of size 2 * 2
B = [3 5; 6 7]
println(findprev(iseven, B, 
        CartesianIndex(2, 2)))
   
# Finding index of previous even value 
# before or including index (2, 2, 1) from 
# the 3D array C of size 2 * 2*2
C = cat([1 2; 3 4], [5 6; 7 8],
        [9 10; 11 12], dims = 3)
println(findprev(iseven, C, 
        CartesianIndex(2, 2, 1)))

输出:




相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Get previous true value from a given array index in Julia | Array findprev() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。