getindex () es una función incorporada en julia que se usa para construir una array del tipo especificado. Esta función también se usa para obtener el elemento de la array en un índice específico.
Sintaxis: getindex(tipo, elementos…])
Parámetros:
- tipo: tipo especificado.
- elementos: Lista especificada de elementos.
Devoluciones: Devuelve la array construida del tipo especificado y también el elemento de la array en un índice específico.
Ejemplo 1:
Python
# Julia program to illustrate # the use of Array getindex() method # Constructing array of the different types println(getindex(Int8, 1, 2, 3)) println(getindex(Int16, 5, 10, 15, 20)) println(getindex(Int32, 2, 4, 6, 8, 10))
Producción:
Ejemplo 2:
Python
# Julia program to illustrate # the use of Array getindex() method # Getting an element of the 2D array # A at some specific indexs of (2, 3) # and (2, 2) A = [1 2 3; 4 5 6] println(getindex(A, 2, 2)) println(getindex(A, 2, 3))
Producción:
Ejemplo 3:
Python
# Julia program to illustrate # the use of Array getindex() method # Getting an element of the 3D array # A at some specific indexs of (1, 2, 2) # and (1, :, 2) A = cat([1 2; 3 4], ["hello" "Geeks"; "Welcome" "GFG"], [5 6; 7 8], dims = 3) getindex(A, 1, 2, 2) getindex(A, 1, :, 2)
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