Es isassigned()
una función incorporada en julia que se usa para probar si el índice dado contiene un valor en la array especificada o no.
Sintaxis: isassigned(array, i)
Parámetros:
- array: array especificada
- i: valor de índice especificado
Devoluciones: Devuelve verdadero si el valor de índice especificado está presente en la array; de lo contrario, es falso.
Ejemplo 1:
# Julia program to illustrate # the use of Array isassigned() method # test whether the given index value 3 is # present in the 1D array A. A = [5, 10, 15, 20] println(isassigned(A, 3)) # test whether the given index value 5 is # present in the 2D array B of size 2 * 2 B = [5 10; 15 20] println(isassigned(B, 5)) # test whether the given index value 9 is # present in 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(isassigned(C, 9))
Salida:
Ejemplo 2:
# Julia program to illustrate # the use of Array isassigned() method # test whether the given index value 3 is # present in the 1D array A. A = [1, 2, 3]; println(isassigned(A, 10)) # test whether the given index value 5 is # present in the 2D array B of size 3 * 2 B = [5 10; 15 20; 25 30]; println(isassigned(B, 25)) # test whether the given index value 9 is # present in the 3D array C of size 2 * 2*4 C = cat([1 2; 3 4], [5 6; 7 8], [9 10; 11 12], [13 14; 15 16], dims = 3); println(isassigned(C, 9))
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