Es to_indices()
una función incorporada en julia que se usa para convertir la tupla I dada en una tupla de índices para usar en la indexación en la array A.
Sintaxis: to_indices(A, I::Tuple)
Parámetros:
- A: array especificada
- I: tupla especificada
Devoluciones: Devuelve la tupla de índices convertida.
Ejemplo 1:
# Julia program to illustrate # the use of to_indices() method # Getting the converted tuple of indices A = [1, 2, 3, 4]; t = (10, 20, 30, 40); println(to_indices(A, t))
Producción:
(10, 20, 30, 40)
Ejemplo 2:
# Julia program to illustrate # the use of to_indices() method # Getting the converted tuple of indices A = [1, 2]; t = (5, 10, 15, 20, 25); println(to_indices(A, t))
Producción:
(5, 10, 15, 20, 25)
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