Es last()
una función incorporada en julia que se usa para devolver el último elemento de la colección iterable especificada.
Sintaxis: last(coll)
Parámetros:
- coll: colección iterable especificada.
Devoluciones: Devuelve el último elemento de la colección iterable especificada.
Ejemplo 1:
# Julia program to illustrate # the use of last() method # Getting the last element of # the specified iterable collection # or 1D array println(last(1:2:3)) println(last(5:10)) println(last([3, 5, 7, 9])) println(last([2, 4, 6, 8]))
Producción:
3 10 9 8
Ejemplo 2:
# Julia program to illustrate # the use of last() method # Getting the last element of # the specified 2D and 3D array println(last([3 5; 7 9])) println(last(["a" "b"; "c" "d"])) println(last(cat([1 2; 3 4], [5 6; 7 8], [2 2; 3 4], dims = 3))) println(last(cat(["a" "b"; "c" "d"], ["e" "f"; "g" "h"], ["i" "j"; "k" "l"], dims = 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