La length()
es una función incorporada en julia que se usa para devolver la cantidad de elementos presentes en la array especificada.
Sintaxis: longitud (A::AbstractArray)
Parámetros:
- A: array especificada
Devoluciones: Devuelve el número de elementos presentes en la array especificada.
Ejemplo 1:
# Julia program to illustrate # the use of Array length() method # Finding the number of elements present in # the specified 1D array A. A = [5, 10, 15, 20] println(length(A)) # Finding the number of elements present in # the specified 2D array B of size 2 * 2 B = [5 10; 15 20] println(length(B)) # Finding the number of elements present in # the specified 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(length(C))
Producción:
Ejemplo 2:
# Julia program to illustrate # the use of Array length() method # Finding the number of elements present in # the specified 1D array A. A = [1, 2, 3]; println(length(A)) # Finding the number of elements present in # the specified 2D array B of size 2 * 2 B = [2 4; 6 8; 10 12]; println(length(B)) # Finding the number of elements present in # the specified 3D array C of size 2 * 2*2 C = cat([1 2; 3 4], [5 6; 7 8], [9 10; 11 12], [13 14; 15 16], dims = 4); println(length(C))
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