Es findlast()
una función incorporada en julia que se usa para devolver el índice o la clave del último 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:
findlast(A)
o
findlast(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 último valor verdadero en la array especificada.
Ejemplo 1:
# Julia program to illustrate # the use of Array findlast() method # Finding index of last true value from # the 1D array A A = [false, true, true, false] println(findlast(A)) # Finding index of last true value from # the 2D array B of size 2 * 2 B = [false false; true false] println(findlast(B)) # Finding index of last 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(findlast(C))
Producción:
Ejemplo 2:
# Julia program to illustrate # the use of Array findlast() method # Finding index of last even value from # the 1D array A A = [1, 2, 5, 6] println(findlast(iseven, A)) # Finding index of last even value from # the 2D array B of size 2 * 2 B = [3 5; 6 7] println(findlast(iseven, B)) # Finding index of last 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(findlast(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