Es findfirst()
una función incorporada en julia que se usa para devolver el índice o la clave del primer valor verdadero en la array especificada. Aquí los valores de índice o clave comienzan desde 1, es decir, para el índice del primer elemento es 1, el índice del segundo elemento es 2 y así sucesivamente.
Sintaxis:
buscarprimero(A)
o
buscarprimero(predicado::Función, A)Parámetros:
- A: array especificada
- Función de predicado: determina si algo es verdadero o falso en función de los argumentos especificados
Devoluciones: Devuelve el índice o clave del primer valor verdadero en la array especificada.
Ejemplo 1:
# Julia program to illustrate # the use of Array findfirst() method # Finding index of first true value from # the 1D array A A = [false, true, true, false] println(findfirst(A)) # Finding index of first true value from # the 2D array B of size 2 * 2 B = [false false; true false] println(findfirst(B)) # Finding index of first true value from # the 3D array C of size 2 * 2*2 C = cat([false false; true false], [false true; true false], [true false; true true], dims = 3) println(findfirst(C))
Producción:
Ejemplo 2:
# Julia program to illustrate # the use of Array findfirst() method # Finding index of first even value from # the 1D array A A = [1, 2, 5, 6] println(findfirst(iseven, A)) # Finding index of first even value from # the 2D array B of size 2 * 2 B = [3 5; 6 7] println(findfirst(iseven, B)) # Finding index of first even value 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(findfirst(iseven, C))
Producción:
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA