Es axes()
una función incorporada en julia que se usa para devolver la tupla o el rango válido de índices válidos para una array específica.
Sintaxis:
ejes(A)
o
ejes(A, d)Parámetros:
- A: array especificada.
- d: Dimensión especificada.
Devoluciones: Devuelve la tupla o el rango válido de índices válidos para la array especificada.
Ejemplo 1:
# Julia program to illustrate # the use of Array axes() method # Getting tuple for 1D array of size 5 # with each element filled with value 4 println(axes(fill(4, (5)))) # Getting tuple for 2D array of size 2X3 # with each element filled with value 5 println(axes(fill(5, (2, 3)))) # Getting tuple for 3D array of size 2X3X4 # with each element filled with value 4 println(axes(fill(4, (2, 3, 4))))
Salida:
Ejemplo 2:
# Julia program to illustrate # the use of Array axes() method # Getting tuple for 1D array of size 5 # with each element filled with value 4 # along with dimension of 1 A = fill(4, (5)); println(axes(A, 1)) # Getting tuple for 2D array of size 2X3 # with each element filled with value 5 # along with dimension of 2 B = fill(5, (2, 3)); println(axes(B, 2)) # Getting tuple for 3D array of size 2X3X4 # with each element filled with value 4 # along with dimension of 3 C = fill(4, (2, 3, 4)); println(axes(C, 3))
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